Endpoint Playground
Test Crawlora's Fox News search 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/foxnews/search?q=<q>&type=article" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| start | integer | No | 1-based result offset | |
| type | string | No | article | Result type |
{
"code": 200,
"msg": "OK",
"data": {
"query": "election",
"start": 1,
"items": [
{
"title": "Example result",
"type": "article",
"url": "https://www.foxnews.com/politics/example-result",
"published_at": "2026-09-21T04:11:08Z"
}
]
}
}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.
Searches Fox News' public credential-free Moxie search surface. Results may include article, video, or slideshow records; use type to restrict the result kind.
{
"code": 200,
"msg": "OK",
"data": {
"query": "election",
"start": 1,
"items": [
{
"title": "Example result",
"type": "article",
"url": "https://www.foxnews.com/politics/example-result",
"published_at": "2026-09-21T04:11:08Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/foxnews/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"