Endpoint Playground
Test Crawlora's TIME author profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/time/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical TIME author URL |
{
"code": 200,
"data": {
"url": "https://time.com/author/stephanie-zacharek/",
"name": "Stephanie Zacharek",
"job_title": "Film Critic",
"bio": "Zacharek is the film critic at TIME. She is the recipient of a Newswomen's Club of New York award and was a 2015 Pulitzer Prize finalist.",
"image_url": "https://static.time.com/v3/assets/...jpg",
"social_accounts": [
"https://x.com/szacharek"
],
"articles": [
{
"title": "Resident Evil Is a Fleet, Entertaining Reboot",
"url": "https://time.com/article/2026/09/18/resident-evil-review/",
"section": "ENTERTAINMENT",
"section_url": "https://time.com/section/entertainment/",
"excerpt": "Zach Cregger's latest film is a satisfying zombie-filled journey",
"published_at": "2026-09-18T19:56:34.718Z"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a TIME author's byline metadata, biography, social accounts, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://time.com/author/stephanie-zacharek/",
"name": "Stephanie Zacharek",
"job_title": "Film Critic",
"bio": "Zacharek is the film critic at TIME. She is the recipient of a Newswomen's Club of New York award and was a 2015 Pulitzer Prize finalist.",
"image_url": "https://static.time.com/v3/assets/...jpg",
"social_accounts": [
"https://x.com/szacharek"
],
"articles": [
{
"title": "Resident Evil Is a Fleet, Entertaining Reboot",
"url": "https://time.com/article/2026/09/18/resident-evil-review/",
"section": "ENTERTAINMENT",
"section_url": "https://time.com/section/entertainment/",
"excerpt": "Zach Cregger's latest film is a satisfying zombie-filled journey",
"published_at": "2026-09-18T19:56:34.718Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/time/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"