Endpoint Playground
Test Crawlora's BBC public-page 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/bbc/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query, up to 120 characters | |
| page | integer | No | Results page, defaults to 1 |
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"summary": "sample",
"title": "sample",
"type": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"query": "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 a bounded page of public BBC search-result metadata. Media entries link only to their BBC landing pages; streams, downloads, and transcripts are not returned.
{
"code": 200,
"data": {
"items": [
{
"published_at": "sample",
"summary": "sample",
"title": "sample",
"type": "sample",
"url": "https://example.com/resource"
}
],
"page": 1,
"query": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bbc/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"