Endpoint Playground
Test Crawlora's The Daily Beast 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/thedailybeast/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical thedailybeast.com/author/<slug> URL |
{
"code": 200,
"data": {
"url": "https://www.thedailybeast.com/author/isabel-van-brugen/",
"name": "Isabel van Brugen",
"job_title": "Freelance Writer",
"bio": [
"Isabel van Brugen is a journalist whose work has been published in outlets including Newsweek, The Times, the London Evening Standard, and the Daily Express, covering beats ranging from the Russia-Ukraine war, U.S. elections and politics, and human rights in China."
],
"image_url": "https://cloudfront-us-east-1.images.arcpublishing.com/thedailybeast/3UIMYUJG3BKJTN2XRGAUKWTGAE.jpg",
"twitter": "https://twitter.com/isabelvanbrugen",
"articles": [
{
"title": "Punk Legend, 67, Reveals Heartbreaking Diagnosis",
"url": "https://www.thedailybeast.com/east-bay-ray-dead-kennedys-guitarist-reveals-heartbreaking-parkinsons-diagnosis/"
}
]
}
}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 The Daily Beast reporter's public profile: name, job title, biography, headshot, social link, and their recent articles, from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.thedailybeast.com/author/isabel-van-brugen/",
"name": "Isabel van Brugen",
"job_title": "Freelance Writer",
"bio": [
"Isabel van Brugen is a journalist whose work has been published in outlets including Newsweek, The Times, the London Evening Standard, and the Daily Express, covering beats ranging from the Russia-Ukraine war, U.S. elections and politics, and human rights in China."
],
"image_url": "https://cloudfront-us-east-1.images.arcpublishing.com/thedailybeast/3UIMYUJG3BKJTN2XRGAUKWTGAE.jpg",
"twitter": "https://twitter.com/isabelvanbrugen",
"articles": [
{
"title": "Punk Legend, 67, Reveals Heartbreaking Diagnosis",
"url": "https://www.thedailybeast.com/east-bay-ray-dead-kennedys-guitarist-reveals-heartbreaking-parkinsons-diagnosis/"
}
]
}
}curl "https://api.crawlora.net/api/v1/thedailybeast/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"