A read-only API providing access to personal information, social profiles, and current media consumption status.
Returns biographical information including name, tagline, summary, and current location.
{
"name": "Jane Smith",
"tagline": "Full Stack Developer & Open Source Contributor",
"summary": "Passionate about building scalable web applications...",
"location": "Portland, OR",
"available_for_hire": true
}
Returns contact details including email, phone, and preferred contact method.
{
"email": "jane.smith@example.com",
"phone": "+1 (555) 123-4567",
"preferred_contact_method": "email",
"timezone": "America/Los_Angeles",
"languages": ["English", "French"]
}
Returns all social media profiles. Filter by platform using platform-specific endpoints.
Platform-specific endpoints:
/api/social/github.json/api/social/twitter.json/api/social/linkedin.json/api/social/instagram.json{
"count": 4,
"active_count": 3,
"profiles": [
{
"platform": "github",
"username": "janesmith",
"url": "https://github.com/janesmith",
"active": true
}
],
"generated_at": "2024-01-10T12:00:00Z"
}
Returns collection of personal and professional website links.
{
"links": [
{
"title": "Personal Blog",
"url": "https://janesmith.dev",
"type": "blog",
"description": "Writing about web development and tech"
}
]
}
Returns information about the book currently being read.
{
"title": "Design Patterns",
"author": "Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides",
"started_at": "2024-01-01T08:00:00Z",
"progress_percent": 75
}
Returns information about the most recently watched movie or show.
{
"title": "The Developers Conference 2024",
"type": "tv_show",
"watched_at": "2024-01-08T19:30:00Z",
"rating": 5
}