Endpoint Playground
Test Crawlora's Foreign Policy project hub 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/project?project=<project>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| project | string | Yes | Foreign Policy project slug |
{
"code": 200,
"data": {
"items": [
{
"authors": [
"sample"
],
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"name": "sample",
"slug": "sample",
"url": "https://example.com/resource"
},
"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 a public Foreign Policy curated project hub and its current article cards. Use foreignpolicy-projects to discover live project slugs.
{
"code": 200,
"data": {
"items": [
{
"authors": [
"sample"
],
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"name": "sample",
"slug": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/foreignpolicy/project?project=<project>" \
-H "x-api-key: $CRAWLORA_API_KEY"