Endpoint Playground
Test Crawlora's Foreign Affairs 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/foreignaffairs/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. robert-kagan | |
| url | string | No | Canonical foreignaffairs.com/authors/<slug> URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Robert Kagan",
"slug": "robert-kagan",
"url": "https://www.foreignaffairs.com/authors/robert-kagan",
"bio": "ROBERT KAGAN is Stephen and Barbara Friedman Senior Fellow at the Brookings Institution and a contributing columnist for The Washington Post...",
"articles": [
{
"title": "A Free World, If You Can Keep It",
"url": "https://www.foreignaffairs.com/united-states/robert-kagan-free-world-if-you-can-keep-it-ukraine-america",
"dek": "Ukraine and American Interests",
"issue_label": "Jan/Feb 2023",
"issue_url": "https://www.foreignaffairs.com/issues/2023/102/1"
}
]
}
}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 Affairs contributor's public profile: name, bio, and the recent articles listed on their contributor page. Foreign Affairs does not paginate this page; it shows a fixed recent-article list.
{
"code": 200,
"data": {
"name": "Robert Kagan",
"slug": "robert-kagan",
"url": "https://www.foreignaffairs.com/authors/robert-kagan",
"bio": "ROBERT KAGAN is Stephen and Barbara Friedman Senior Fellow at the Brookings Institution and a contributing columnist for The Washington Post...",
"articles": [
{
"title": "A Free World, If You Can Keep It",
"url": "https://www.foreignaffairs.com/united-states/robert-kagan-free-world-if-you-can-keep-it-ukraine-america",
"dek": "Ukraine and American Interests",
"issue_label": "Jan/Feb 2023",
"issue_url": "https://www.foreignaffairs.com/issues/2023/102/1"
}
]
}
}curl "https://api.crawlora.net/api/v1/foreignaffairs/author" \
-H "x-api-key: $CRAWLORA_API_KEY"