Endpoint Playground
Test Crawlora's Foreign Affairs topic feed 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/topic?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| topic | string | Yes | Foreign Affairs topic slug from foreignaffairs-topics |
{
"code": 200,
"data": {
"topic": {
"slug": "economics",
"name": "Economics",
"feed_url": "https://www.foreignaffairs.com/feeds/topic/Economics/rss.xml"
},
"items": [
{
"title": "Example story",
"url": "https://www.foreignaffairs.com/economics/example-story"
}
]
},
"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 the newest items from one Foreign Affairs topic RSS feed. Discover accepted values with foreignaffairs-topics; unknown topic values are rejected before upstream I/O.
{
"code": 200,
"data": {
"topic": {
"slug": "economics",
"name": "Economics",
"feed_url": "https://www.foreignaffairs.com/feeds/topic/Economics/rss.xml"
},
"items": [
{
"title": "Example story",
"url": "https://www.foreignaffairs.com/economics/example-story"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/foreignaffairs/topic?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"