Endpoint Playground
Test Crawlora's Deadline 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/deadline/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical deadline.com/author/<slug> URL | |
| page | integer | No | 1-based page of recent articles to return; defaults to 1 |
{
"code": 200,
"data": {
"url": "https://deadline.com/author/andreas-wiseman",
"name": "Andreas Wiseman",
"job_title": "Executive Editor, Film & International",
"headshot_url": "https://deadline.com/wp-content/uploads/2025/03/example.jpg",
"biography": [
"Andreas joined Deadline in 2018 covering the international and U.S. film industries."
],
"social_links": {
"twitter": "https://twitter.com/AndreasWiseman",
"email": "mailto:awiseman@deadline.com"
},
"page": 1,
"articles": [
{
"title": "Example story",
"url": "https://deadline.com/2026/09/example-story-1237111140/"
}
]
}
}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 one Deadline staff writer or contributor's public profile: name, job title, headshot, biography, social/contact links, and one page of their recent articles.
{
"code": 200,
"data": {
"url": "https://deadline.com/author/andreas-wiseman",
"name": "Andreas Wiseman",
"job_title": "Executive Editor, Film & International",
"headshot_url": "https://deadline.com/wp-content/uploads/2025/03/example.jpg",
"biography": [
"Andreas joined Deadline in 2018 covering the international and U.S. film industries."
],
"social_links": {
"twitter": "https://twitter.com/AndreasWiseman",
"email": "mailto:awiseman@deadline.com"
},
"page": 1,
"articles": [
{
"title": "Example story",
"url": "https://deadline.com/2026/09/example-story-1237111140/"
}
]
}
}curl "https://api.crawlora.net/api/v1/deadline/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"