Endpoint Playground
Test Crawlora's IMDb title public facts analysis 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/title/public-facts-analysis?id=tt1375666&url=https%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1375666%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | tt1375666 | IMDb title id |
| url | string | No | https://www.imdb.com/title/tt1375666/ | Absolute https://www.imdb.com/title/<id>/ URL |
{
"code": 200,
"msg": "OK",
"data": {
"summary": {
"trivia_count": 12,
"goof_count": 4,
"quote_count": 8,
"keyword_count": 20,
"filming_location_count": 6,
"company_section_count": 3,
"company_count": 9,
"spoiler_fact_count": 2,
"public_page_signals": 64,
"public_fact_coverage_pages": 6
},
"not_viewing_advice": true,
"public_page_derived": true
}
}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 derived public-page summary metrics for IMDb trivia, goofs, quotes, keywords, filming locations, and company credits. This endpoint is not viewing advice. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"summary": {
"trivia_count": 12,
"goof_count": 4,
"quote_count": 8,
"keyword_count": 20,
"filming_location_count": 6,
"company_section_count": 3,
"company_count": 9,
"spoiler_fact_count": 2,
"public_page_signals": 64,
"public_fact_coverage_pages": 6
},
"not_viewing_advice": true,
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/imdb/title/public-facts-analysis" \
-H "x-api-key: $CRAWLORA_API_KEY"