Endpoint Playground
Test Crawlora's Daily Mail author 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/dailymail/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical dailymail.com/profile-<id>/<slug>.html URL | |
| page | integer | No | 1-based page of articles to return; defaults to 1 |
{
"code": 200,
"data": {
"name": "Example Author",
"profile_id": "1021",
"url": "https://www.dailymail.com/profile-1021/example-author.html",
"job_title": "Example Reporter",
"bio": "Example is a Daily Mail reporter covering example topics.",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/exampleauthor"
}
],
"page": 1,
"total_pages": 14,
"articles": [
{
"title": "Example headline",
"url": "https://www.dailymail.com/news/article-1234567/example.html",
"description": "Example article summary.",
"published_at": "2026-09-22T23:38:25Z"
}
]
}
}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 Daily Mail author's public profile: name, job title, bio, social accounts, and one page of their recent articles.
{
"code": 200,
"data": {
"name": "Example Author",
"profile_id": "1021",
"url": "https://www.dailymail.com/profile-1021/example-author.html",
"job_title": "Example Reporter",
"bio": "Example is a Daily Mail reporter covering example topics.",
"social_accounts": [
{
"platform": "twitter",
"url": "https://twitter.com/exampleauthor"
}
],
"page": 1,
"total_pages": 14,
"articles": [
{
"title": "Example headline",
"url": "https://www.dailymail.com/news/article-1234567/example.html",
"description": "Example article summary.",
"published_at": "2026-09-22T23:38:25Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/dailymail/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"