Endpoint Playground
Test Crawlora's BBC correspondent 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/bbc/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical BBC News correspondent URL |
{
"code": 200,
"data": {
"url": "https://www.bbc.co.uk/news/correspondents/jonnydymond",
"name": "Jonny Dymond",
"bio": "Jonny is the BBC's royal correspondent. He was previously a correspondent in Washington, Brussels and Istanbul.",
"articles": [
{
"title": "The PR missteps that overshadowed a royal tour",
"url": "https://www.bbc.co.uk/news/uk-60870417",
"section": "UK",
"published_at": "2022-03-25"
}
]
}
}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 a BBC News correspondent's public profile: name, short bio, and their recent articles.
{
"code": 200,
"data": {
"url": "https://www.bbc.co.uk/news/correspondents/jonnydymond",
"name": "Jonny Dymond",
"bio": "Jonny is the BBC's royal correspondent. He was previously a correspondent in Washington, Brussels and Istanbul.",
"articles": [
{
"title": "The PR missteps that overshadowed a royal tour",
"url": "https://www.bbc.co.uk/news/uk-60870417",
"section": "UK",
"published_at": "2022-03-25"
}
]
}
}curl "https://api.crawlora.net/api/v1/bbc/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"