Endpoint Playground
Test Crawlora's Independent 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/independent/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. lizzie-dearden | |
| url | string | No | Canonical independent.co.uk/author/<slug> URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Lizzie Dearden",
"slug": "lizzie-dearden",
"url": "https://www.independent.co.uk/author/lizzie-dearden",
"job_title": "Former Home Affairs Editor",
"bio": "Lizzie Dearden was The Independent's Home Affairs Editor until August 2023...",
"twitter": "https://twitter.com/lizziedearden",
"articles": [
{
"title": "Home Office body returns £1m funding for counterextremism work",
"url": "https://www.independent.co.uk/news/uk/home-news/terrorism-threat-extremism-budget-home-office-b2395559.html",
"section": "Home News",
"section_url": "https://www.independent.co.uk/news/uk/home-news"
}
]
}
}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 Independent author's public profile: name, job title, bio, X/Twitter handle, and their recent articles.
{
"code": 200,
"data": {
"name": "Lizzie Dearden",
"slug": "lizzie-dearden",
"url": "https://www.independent.co.uk/author/lizzie-dearden",
"job_title": "Former Home Affairs Editor",
"bio": "Lizzie Dearden was The Independent's Home Affairs Editor until August 2023...",
"twitter": "https://twitter.com/lizziedearden",
"articles": [
{
"title": "Home Office body returns £1m funding for counterextremism work",
"url": "https://www.independent.co.uk/news/uk/home-news/terrorism-threat-extremism-budget-home-office-b2395559.html",
"section": "Home News",
"section_url": "https://www.independent.co.uk/news/uk/home-news"
}
]
}
}curl "https://api.crawlora.net/api/v1/independent/author" \
-H "x-api-key: $CRAWLORA_API_KEY"