Endpoint Playground
Test Crawlora's Telegraph 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/telegraph/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Telegraph author URL |
{
"code": 200,
"data": {
"url": "https://www.telegraph.co.uk/authors/c/ck-co/con-coughlin/",
"name": "Con Coughlin",
"job_title": "Executive Defence and Foreign Affairs Editor",
"bio": "A leading expert on global conflict, international security and the Middle East.",
"articles": [
{
"title": "Trump is making a fool of himself over Iran",
"url": "https://www.telegraph.co.uk/news/2026/09/22/trump-making-fool-of-himself-over-iran/",
"excerpt": "The US president both threatened to annihilate the Iranian regime and claimed it was no longer a bully",
"published_at": "2026-09-22T17:53:33.545+01:00"
}
]
}
}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 Telegraph author's byline metadata, biography, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.telegraph.co.uk/authors/c/ck-co/con-coughlin/",
"name": "Con Coughlin",
"job_title": "Executive Defence and Foreign Affairs Editor",
"bio": "A leading expert on global conflict, international security and the Middle East.",
"articles": [
{
"title": "Trump is making a fool of himself over Iran",
"url": "https://www.telegraph.co.uk/news/2026/09/22/trump-making-fool-of-himself-over-iran/",
"excerpt": "The US president both threatened to annihilate the Iranian regime and claimed it was no longer a bully",
"published_at": "2026-09-22T17:53:33.545+01:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/telegraph/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"