Endpoint Playground
Test Crawlora's FT 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/ft/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author URL slug, e.g. martin-wolf | |
| url | string | No | Canonical www.ft.com/<slug> author URL; alternative to slug | |
| page | integer | No | 1-based page number of the author's article list |
{
"code": 200,
"data": {
"name": "Martin Wolf",
"slug": "martin-wolf",
"url": "https://www.ft.com/martin-wolf",
"job_title": "Chief Economics Commentator",
"email": "martin.wolf@ft.com",
"social_accounts": [
{
"platform": "twitter",
"url": "https://www.twitter.com/@martinwolf_"
}
],
"page": 1,
"has_more": true,
"articles": [
{
"title": "With AI, 'I told you so' will be too late",
"url": "https://www.ft.com/content/9dd894cd-dddd-4388-ac00-dbd14d40dc52",
"summary": "Reducing the speed of innovation is going to be hard, both practically and politically",
"section": "Artificial intelligence"
}
]
}
}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 Financial Times contributor's public byline profile (name, job title, email, social accounts) plus one page of their recent articles. FT author pages carry no bio paragraph, only this byline metadata.
{
"code": 200,
"data": {
"name": "Martin Wolf",
"slug": "martin-wolf",
"url": "https://www.ft.com/martin-wolf",
"job_title": "Chief Economics Commentator",
"email": "martin.wolf@ft.com",
"social_accounts": [
{
"platform": "twitter",
"url": "https://www.twitter.com/@martinwolf_"
}
],
"page": 1,
"has_more": true,
"articles": [
{
"title": "With AI, 'I told you so' will be too late",
"url": "https://www.ft.com/content/9dd894cd-dddd-4388-ac00-dbd14d40dc52",
"summary": "Reducing the speed of innovation is going to be hard, both practically and politically",
"section": "Artificial intelligence"
}
]
}
}curl "https://api.crawlora.net/api/v1/ft/author" \
-H "x-api-key: $CRAWLORA_API_KEY"