Endpoint Playground
Test Crawlora's Financial Times 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/ft/search?q=<q>&sort=relevance&date_range=now-24h" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search keywords | |
| page | integer | No | Results page | |
| sort | string | No | relevance | Result ordering |
| date_range | string | No | now-24h | Publication-window filter |
{
"code": 200,
"data": {
"date_range": "sample",
"has_more": true,
"items": [
{
"image_url": "https://example.com/resource",
"published_at": "sample",
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"q": "sample",
"sort": "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 Financial Times search results: each story's title, canonical URL, summary, section tag, publication time, and lead image. Results can be ordered by relevance or date and filtered by publication window.
{
"code": 200,
"data": {
"date_range": "sample",
"has_more": true,
"items": [
{
"image_url": "https://example.com/resource",
"published_at": "sample",
"section": "sample",
"summary": "sample",
"title": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"q": "sample",
"sort": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ft/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"