Endpoint Playground
Test Crawlora's Foreign Policy topic archive 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/topic?type=category&topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| type | string | No | category | Archive namespace, defaults to category |
| topic | string | Yes | Foreign Policy category or tag slug | |
| page | integer | No | 1-based archive page, defaults to 1 |
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"topic": "sample",
"type": "sample"
},
"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 page of a public Foreign Policy category or tag archive (newest first). type selects the archive namespace and defaults to category; topic is the slug within it; page is 1-based.
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"topic": "sample",
"type": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/foreignpolicy/topic?topic=<topic>" \
-H "x-api-key: $CRAWLORA_API_KEY"