Endpoint Playground
Test Crawlora's Daily Record 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/dailyrecord/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. paul-hutcheon | |
| url | string | No | Canonical dailyrecord.co.uk/authors/<slug>/ URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Paul Hutcheon",
"slug": "paul-hutcheon",
"url": "https://www.dailyrecord.co.uk/authors/paul-hutcheon/",
"job_title": "Political Editor, Daily Record",
"bio": "Paul joined the Daily Record in 2019. He has won Political Journalist of the Year seven times and been named Journalist of the Year on three occasions...",
"email": "paul.hutcheon@dailyrecord.co.uk",
"twitter": "https://twitter.com/paulhutcheon",
"articles": [
{
"title": "Glasgow in critical £110m black hole fuelled by refugee homelessness crisis",
"url": "https://www.dailyrecord.co.uk/news/politics/glasgow-bust-110m-black-hole-37620501",
"label": "Glasgow City Council"
}
]
}
}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 Record author's public profile: name, job title, bio, email, X/Twitter handle, and their recent articles.
{
"code": 200,
"data": {
"name": "Paul Hutcheon",
"slug": "paul-hutcheon",
"url": "https://www.dailyrecord.co.uk/authors/paul-hutcheon/",
"job_title": "Political Editor, Daily Record",
"bio": "Paul joined the Daily Record in 2019. He has won Political Journalist of the Year seven times and been named Journalist of the Year on three occasions...",
"email": "paul.hutcheon@dailyrecord.co.uk",
"twitter": "https://twitter.com/paulhutcheon",
"articles": [
{
"title": "Glasgow in critical £110m black hole fuelled by refugee homelessness crisis",
"url": "https://www.dailyrecord.co.uk/news/politics/glasgow-bust-110m-black-hole-37620501",
"label": "Glasgow City Council"
}
]
}
}curl "https://api.crawlora.net/api/v1/dailyrecord/author" \
-H "x-api-key: $CRAWLORA_API_KEY"