Endpoint Playground
Test Crawlora's Foreign Policy 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/foreignpolicy/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. anne-applebaum | |
| url | string | No | Canonical foreignpolicy.com/author/<slug>/ URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Anne Applebaum",
"slug": "anne-applebaum",
"url": "https://foreignpolicy.com/author/anne-applebaum/",
"bio": "Anne Applebaum, author of the Pulitzer Prize-winning book Gulag: A History, is the director of political studies at the Legatum Institute...",
"articles": [
{
"title": "Does Europe Even Matter?",
"url": "https://foreignpolicy.com/2015/12/01/does-europe-even-matter/",
"section": "Feature",
"section_url": "https://foreignpolicy.com/category/feature/",
"published_at": "2015-12-01"
}
]
}
}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 Foreign Policy contributor's public profile: name, bio, and their recent articles. Further articles load behind a client-side control this endpoint does not follow, so this is the author page's initial recent-article list, not the contributor's full history.
{
"code": 200,
"data": {
"name": "Anne Applebaum",
"slug": "anne-applebaum",
"url": "https://foreignpolicy.com/author/anne-applebaum/",
"bio": "Anne Applebaum, author of the Pulitzer Prize-winning book Gulag: A History, is the director of political studies at the Legatum Institute...",
"articles": [
{
"title": "Does Europe Even Matter?",
"url": "https://foreignpolicy.com/2015/12/01/does-europe-even-matter/",
"section": "Feature",
"section_url": "https://foreignpolicy.com/category/feature/",
"published_at": "2015-12-01"
}
]
}
}curl "https://api.crawlora.net/api/v1/foreignpolicy/author" \
-H "x-api-key: $CRAWLORA_API_KEY"