Endpoint Playground
Test Crawlora's Politico staff 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/politico/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Politico staff slug, e.g. mark-satter | |
| url | string | No | Canonical www.politico.com/staff/<slug> URL, as an alternative to slug |
{
"code": 200,
"data": {
"name": "Mark Satter",
"slug": "mark-satter",
"url": "https://www.politico.com/staff/mark-satter",
"job_title": "Reporter",
"bio": "Mark Satter is a defense reporter at POLITICO with a focus on the intersection of politics, policy and power within the Pentagon and the Congressional defense committees.",
"image_url": "https://www.politico.com/dims4/default/2c16e42/2147483647/resize/1200x/quality/90/?url=https%3A%2F%2Fstatic.politico.com%2Ffe%2Fd4%2Ff1ef10cc405d8216cb5cf6f82aa7%2Fheadshot-mark-satter.jpg",
"articles": [
{
"title": "Hill investigates after F-35 parts diverted to Hong Kong",
"url": "https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647",
"published_at": "2026-09-18T11:55-0400"
}
]
},
"msg": "OK"
}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 Politico staff author's public profile: name, job title, bio, headshot, and their most recent bylined articles. Politico staff pages expose a fixed-size recent-articles list with no pagination.
{
"code": 200,
"data": {
"name": "Mark Satter",
"slug": "mark-satter",
"url": "https://www.politico.com/staff/mark-satter",
"job_title": "Reporter",
"bio": "Mark Satter is a defense reporter at POLITICO with a focus on the intersection of politics, policy and power within the Pentagon and the Congressional defense committees.",
"image_url": "https://www.politico.com/dims4/default/2c16e42/2147483647/resize/1200x/quality/90/?url=https%3A%2F%2Fstatic.politico.com%2Ffe%2Fd4%2Ff1ef10cc405d8216cb5cf6f82aa7%2Fheadshot-mark-satter.jpg",
"articles": [
{
"title": "Hill investigates after F-35 parts diverted to Hong Kong",
"url": "https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647",
"published_at": "2026-09-18T11:55-0400"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/politico/author" \
-H "x-api-key: $CRAWLORA_API_KEY"