Endpoint Playground
Test Crawlora's Bloomberg 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/bloomberg/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical Bloomberg author URL |
{
"code": 200,
"data": {
"url": "https://www.bloomberg.com/authors/AXSztklFffk/bernard-goyder",
"name": "Bernard Goyder",
"title": "Journalist",
"bio": "Bernard Goyder is a reporter at Bloomberg News in New York covering equity derivatives, with a focus on the options market.",
"articles": [
{
"title": "Jane Street Joins Wave of Dealers Offering Swaps for Risky ETFs",
"url": "https://www.bloomberg.com/news/articles/2026-09-20/jane-street-joins-wave-of-dealers-offering-swaps-for-risky-etfs",
"section": "markets",
"byline": "Yiqin Shen and Bernard Goyder",
"type": "article",
"published_at": "2026-09-20T14:00:00.000Z"
}
]
}
}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 public Bloomberg author's profile (name, title, bio) and their recent-content feed from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.bloomberg.com/authors/AXSztklFffk/bernard-goyder",
"name": "Bernard Goyder",
"title": "Journalist",
"bio": "Bernard Goyder is a reporter at Bloomberg News in New York covering equity derivatives, with a focus on the options market.",
"articles": [
{
"title": "Jane Street Joins Wave of Dealers Offering Swaps for Risky ETFs",
"url": "https://www.bloomberg.com/news/articles/2026-09-20/jane-street-joins-wave-of-dealers-offering-swaps-for-risky-etfs",
"section": "markets",
"byline": "Yiqin Shen and Bernard Goyder",
"type": "article",
"published_at": "2026-09-20T14:00:00.000Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/bloomberg/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"