Endpoint Playground
Test Crawlora's IMDb title 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/imdb/search?query=inception&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | inception | Search query |
| limit | integer | No | 10 | Rows to return, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "inception",
"limit": 10,
"results": [
{
"id": "tt1375666",
"title": "Inception",
"url": "https://www.imdb.com/title/tt1375666/",
"year": "2010"
}
]
}
}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 normalized IMDb title search rows from credential-free public IMDb pages. Limit defaults to 10 and clamps to 20.
{
"code": 200,
"msg": "OK",
"data": {
"query": "inception",
"limit": 10,
"results": [
{
"id": "tt1375666",
"title": "Inception",
"url": "https://www.imdb.com/title/tt1375666/",
"year": "2010"
}
]
}
}curl "https://api.crawlora.net/api/v1/imdb/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"