Endpoint Playground
Test Crawlora's Breitbart 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/breitbart/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. joshua-klein | |
| url | string | No | Canonical breitbart.com/author/<slug>/ URL, optionally with a /page/<n>/ segment; alternative to slug | |
| page | integer | No | 1-based page of articles to return; defaults to 1 |
{
"code": 200,
"data": {
"name": "Joshua Klein",
"slug": "joshua-klein",
"url": "https://www.breitbart.com/author/joshua-klein/",
"bio": "",
"page": 1,
"articles": [
{
"title": "Example Story",
"url": "https://www.breitbart.com/politics/2026/09/22/example-story/",
"summary": "Example summary.",
"published_at": "2026-09-22T21:24:37Z"
}
]
}
}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 Breitbart author/contributor's public profile: name, a short bio/role line when the page carries one, and their recent articles.
{
"code": 200,
"data": {
"name": "Joshua Klein",
"slug": "joshua-klein",
"url": "https://www.breitbart.com/author/joshua-klein/",
"bio": "",
"page": 1,
"articles": [
{
"title": "Example Story",
"url": "https://www.breitbart.com/politics/2026/09/22/example-story/",
"summary": "Example summary.",
"published_at": "2026-09-22T21:24:37Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/breitbart/author" \
-H "x-api-key: $CRAWLORA_API_KEY"