Endpoint Playground
Test Crawlora's Foreign Policy project directory 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/projects" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based project-directory page, defaults to 1 |
{
"code": 200,
"data": {
"items": [
{
"name": "sample",
"slug": "sample",
"url": "https://example.com/resource"
}
],
"next_page": 1,
"page": 1
},
"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 Foreign Policy's live public project directory. Follow next_page until it is zero to enumerate the current project slug space, then pass a slug to foreignpolicy-project.
{
"code": 200,
"data": {
"items": [
{
"name": "sample",
"slug": "sample",
"url": "https://example.com/resource"
}
],
"next_page": 1,
"page": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/foreignpolicy/projects" \
-H "x-api-key: $CRAWLORA_API_KEY"