Endpoint Playground
Test Crawlora's Daily Express journalist 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/dailyexpress/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Daily Express journalist URL |
{
"code": 200,
"data": {
"url": "https://www.express.co.uk/journalist/123944/Rebecca-Russell",
"name": "Rebecca Russell",
"job_title": "Deputy Royal Editor",
"bio": [
"BASED IN: London",
"TOPIC EXPERTISE: Royal Family, Royal Family history",
"She covers current Royal Family events, as well as frequently writes about the Royal Family's traditions and history.",
"Email: rebecca.russell@reachplc.com",
"X: @RMRussell29"
],
"email": "rebecca.russell@reachplc.com",
"twitter": "https://x.com/RMRussell29",
"articles": [
{
"title": "Earl Spencer humiliated as he's forced to issue grovelling apology to Piers Morgan",
"url": "https://www.express.co.uk/news/royal/2250779/earl-spencer-piers-morgan-apology"
}
]
}
}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 Express journalist's public profile: name, job title, bio, and their recent articles, from a canonical journalist URL.
{
"code": 200,
"data": {
"url": "https://www.express.co.uk/journalist/123944/Rebecca-Russell",
"name": "Rebecca Russell",
"job_title": "Deputy Royal Editor",
"bio": [
"BASED IN: London",
"TOPIC EXPERTISE: Royal Family, Royal Family history",
"She covers current Royal Family events, as well as frequently writes about the Royal Family's traditions and history.",
"Email: rebecca.russell@reachplc.com",
"X: @RMRussell29"
],
"email": "rebecca.russell@reachplc.com",
"twitter": "https://x.com/RMRussell29",
"articles": [
{
"title": "Earl Spencer humiliated as he's forced to issue grovelling apology to Piers Morgan",
"url": "https://www.express.co.uk/news/royal/2250779/earl-spencer-piers-morgan-apology"
}
]
}
}curl "https://api.crawlora.net/api/v1/dailyexpress/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"