IMDb API endpoint
Use Crawlora's IMDb title public facts analysis API to extract supported public IMDb data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/imdb/title/public-facts-analysisReturns 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`. The six sections are gathered from six independent sources, so a section that cannot be fetched is omitted and named in `missing_sections` with `partial` set to `true`, rather than failing the whole response; an error is returned only when no section could be fetched. Callers that require a complete analysis should check `partial`. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id | string | No | IMDb title id | ||
| url | string | No | Absolute https://www.imdb.com/title/<id>/ URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/imdb/title/public-facts-analysis" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `data.summary` includes counts for trivia, goofs, quotes, keywords, filming locations, company sections, companies, spoiler-marked public facts, public page signals, and source-page coverage. - `data.trivia`, `data.goofs`, `data.quotes`, `data.keywords`, `data.filming_locations`, and `data.company_credits` contain the underlying normalized page payloads. - The six sections come from six independent sources. A section that cannot be fetched is omitted from the response instead of failing the whole request: `data.partial` is then `true` and `data.missing_sections` lists the omitted section keys (`trivia`, `goofs`, `quotes`, `keywords`, `filming_locations`, `company_credits`). `data.summary` counts only the sections that arrived, so callers that require a complete analysis should check `data.partial` rather than infer completeness from the `200`. - An upstream error is returned only when no section could be fetched. - IMDb WAF or robot-verification pages return an upstream error. Example response: ```json { "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, "partial": false } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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,
"partial": false
}
}Request schema
No body schema
Response schema
#/definitions/imdb.titlePublicFactsAnalysisResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | imdb.TitlePublicFactsAnalysisResponse | No | ||||
| data.company_credits | imdb.TitlePublicFactsResponse | No | ||||
| data.company_credits.company_credits | array | No | ||||
| data.company_credits.company_credits[].companies | array | No | ||||
| data.company_credits.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.company_credits.company_credits[].companies[].note | string | No | presents | |||
| data.company_credits.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.company_credits.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.company_credits.company_credits[].name | string | No | Production Companies | |||
| data.company_credits.company_credits[].slug | string | No | production-companies | |||
| data.company_credits.facts | array | No | ||||
| data.company_credits.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.company_credits.facts[].public_signals | integer | No | 1 | |||
| data.company_credits.facts[].spoiler | boolean | No | false | |||
| data.company_credits.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.company_credits.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.company_credits.has_more | boolean | No | true | |||
| data.company_credits.id | string | No | tt1375666 | |||
| data.company_credits.keywords | array | No | ||||
| data.company_credits.keywords[].keyword | string | No | dream | |||
| data.company_credits.keywords[].public_signals | integer | No | 2 | |||
| data.company_credits.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.company_credits.locations | array | No | ||||
| data.company_credits.locations[].location | string | No | Paris, France | |||
| data.company_credits.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.company_credits.locations[].public_signals | integer | No | 2 | |||
| data.company_credits.public_page_derived | boolean | No | true | |||
| data.company_credits.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.company_credits.total | integer | No | 21 | |||
| data.company_credits.type | string | No | trivia | |||
| data.company_credits.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.filming_locations | imdb.TitlePublicFactsResponse | No | ||||
| data.filming_locations.company_credits | array | No | ||||
| data.filming_locations.company_credits[].companies | array | No | ||||
| data.filming_locations.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.filming_locations.company_credits[].companies[].note | string | No | presents | |||
| data.filming_locations.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.filming_locations.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.filming_locations.company_credits[].name | string | No | Production Companies | |||
| data.filming_locations.company_credits[].slug | string | No | production-companies | |||
| data.filming_locations.facts | array | No | ||||
| data.filming_locations.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.filming_locations.facts[].public_signals | integer | No | 1 | |||
| data.filming_locations.facts[].spoiler | boolean | No | false | |||
| data.filming_locations.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.filming_locations.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.filming_locations.has_more | boolean | No | true | |||
| data.filming_locations.id | string | No | tt1375666 | |||
| data.filming_locations.keywords | array | No | ||||
| data.filming_locations.keywords[].keyword | string | No | dream | |||
| data.filming_locations.keywords[].public_signals | integer | No | 2 | |||
| data.filming_locations.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.filming_locations.locations | array | No | ||||
| data.filming_locations.locations[].location | string | No | Paris, France | |||
| data.filming_locations.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.filming_locations.locations[].public_signals | integer | No | 2 | |||
| data.filming_locations.public_page_derived | boolean | No | true | |||
| data.filming_locations.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.filming_locations.total | integer | No | 21 | |||
| data.filming_locations.type | string | No | trivia | |||
| data.filming_locations.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.goofs | imdb.TitlePublicFactsResponse | No | ||||
| data.goofs.company_credits | array | No | ||||
| data.goofs.company_credits[].companies | array | No | ||||
| data.goofs.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.goofs.company_credits[].companies[].note | string | No | presents | |||
| data.goofs.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.goofs.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.goofs.company_credits[].name | string | No | Production Companies | |||
| data.goofs.company_credits[].slug | string | No | production-companies | |||
| data.goofs.facts | array | No | ||||
| data.goofs.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.goofs.facts[].public_signals | integer | No | 1 | |||
| data.goofs.facts[].spoiler | boolean | No | false | |||
| data.goofs.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.goofs.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.goofs.has_more | boolean | No | true | |||
| data.goofs.id | string | No | tt1375666 | |||
| data.goofs.keywords | array | No | ||||
| data.goofs.keywords[].keyword | string | No | dream | |||
| data.goofs.keywords[].public_signals | integer | No | 2 | |||
| data.goofs.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.goofs.locations | array | No | ||||
| data.goofs.locations[].location | string | No | Paris, France | |||
| data.goofs.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.goofs.locations[].public_signals | integer | No | 2 | |||
| data.goofs.public_page_derived | boolean | No | true | |||
| data.goofs.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.goofs.total | integer | No | 21 | |||
| data.goofs.type | string | No | trivia | |||
| data.goofs.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.keywords | imdb.TitlePublicFactsResponse | No | ||||
| data.keywords.company_credits | array | No | ||||
| data.keywords.company_credits[].companies | array | No | ||||
| data.keywords.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.keywords.company_credits[].companies[].note | string | No | presents | |||
| data.keywords.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.keywords.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.keywords.company_credits[].name | string | No | Production Companies | |||
| data.keywords.company_credits[].slug | string | No | production-companies | |||
| data.keywords.facts | array | No | ||||
| data.keywords.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.keywords.facts[].public_signals | integer | No | 1 | |||
| data.keywords.facts[].spoiler | boolean | No | false | |||
| data.keywords.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.keywords.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.keywords.has_more | boolean | No | true | |||
| data.keywords.id | string | No | tt1375666 | |||
| data.keywords.keywords | array | No | ||||
| data.keywords.keywords[].keyword | string | No | dream | |||
| data.keywords.keywords[].public_signals | integer | No | 2 | |||
| data.keywords.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.keywords.locations | array | No | ||||
| data.keywords.locations[].location | string | No | Paris, France | |||
| data.keywords.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.keywords.locations[].public_signals | integer | No | 2 | |||
| data.keywords.public_page_derived | boolean | No | true | |||
| data.keywords.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.keywords.total | integer | No | 21 | |||
| data.keywords.type | string | No | trivia | |||
| data.keywords.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.missing_sections | array | No | MissingSections names the sections that failed, using the same keys as the fields above (trivia, goofs, quotes, keywords, filming_locations, company_credits). | |||
| data.not_viewing_advice | boolean | No | true | |||
| data.partial | boolean | No | false | Partial is true when at least one section could not be fetched. The sections that did arrive are still populated and Summary still counts them, so callers that need a complete analysis must check this rather than infer completeness from a 200. | ||
| data.public_page_derived | boolean | No | true | |||
| data.quotes | imdb.TitlePublicFactsResponse | No | ||||
| data.quotes.company_credits | array | No | ||||
| data.quotes.company_credits[].companies | array | No | ||||
| data.quotes.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.quotes.company_credits[].companies[].note | string | No | presents | |||
| data.quotes.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.quotes.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.quotes.company_credits[].name | string | No | Production Companies | |||
| data.quotes.company_credits[].slug | string | No | production-companies | |||
| data.quotes.facts | array | No | ||||
| data.quotes.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.quotes.facts[].public_signals | integer | No | 1 | |||
| data.quotes.facts[].spoiler | boolean | No | false | |||
| data.quotes.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.quotes.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.quotes.has_more | boolean | No | true | |||
| data.quotes.id | string | No | tt1375666 | |||
| data.quotes.keywords | array | No | ||||
| data.quotes.keywords[].keyword | string | No | dream | |||
| data.quotes.keywords[].public_signals | integer | No | 2 | |||
| data.quotes.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.quotes.locations | array | No | ||||
| data.quotes.locations[].location | string | No | Paris, France | |||
| data.quotes.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.quotes.locations[].public_signals | integer | No | 2 | |||
| data.quotes.public_page_derived | boolean | No | true | |||
| data.quotes.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.quotes.total | integer | No | 21 | |||
| data.quotes.type | string | No | trivia | |||
| data.quotes.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.summary | imdb.PublicFactsAnalysisSummary | No | ||||
| data.summary.company_count | integer | No | 9 | |||
| data.summary.company_section_count | integer | No | 3 | |||
| data.summary.filming_location_count | integer | No | 6 | |||
| data.summary.goof_count | integer | No | 4 | |||
| data.summary.keyword_count | integer | No | 20 | |||
| data.summary.public_fact_coverage_pages | integer | No | 6 | |||
| data.summary.public_page_signals | integer | No | 64 | |||
| data.summary.quote_count | integer | No | 8 | |||
| data.summary.spoiler_fact_count | integer | No | 2 | |||
| data.summary.trivia_count | integer | No | 12 | |||
| data.trivia | imdb.TitlePublicFactsResponse | No | ||||
| data.trivia.company_credits | array | No | ||||
| data.trivia.company_credits[].companies | array | No | ||||
| data.trivia.company_credits[].companies[].name | string | No | Warner Bros. | |||
| data.trivia.company_credits[].companies[].note | string | No | presents | |||
| data.trivia.company_credits[].companies[].public_signals | integer | No | 2 | |||
| data.trivia.company_credits[].companies[].url | string | No | https://www.imdb.com/company/co0002663/ | |||
| data.trivia.company_credits[].name | string | No | Production Companies | |||
| data.trivia.company_credits[].slug | string | No | production-companies | |||
| data.trivia.facts | array | No | ||||
| data.trivia.facts[].category | string | No | Continuity | Category is IMDb's own grouping for the row, e.g. "Continuity" or "Revealing mistakes" for goofs. Empty when IMDb files the row under an unnamed group, which is the usual case for trivia. | ||
| data.trivia.facts[].public_signals | integer | No | 1 | |||
| data.trivia.facts[].spoiler | boolean | No | false | |||
| data.trivia.facts[].text | string | No | The hallway fight was filmed with a rotating set. | |||
| data.trivia.fetched_at | string | No | 2026-06-07T14:46:16Z | |||
| data.trivia.has_more | boolean | No | true | |||
| data.trivia.id | string | No | tt1375666 | |||
| data.trivia.keywords | array | No | ||||
| data.trivia.keywords[].keyword | string | No | dream | |||
| data.trivia.keywords[].public_signals | integer | No | 2 | |||
| data.trivia.keywords[].url | string | No | https://www.imdb.com/search/keyword/?keywords=dream | |||
| data.trivia.locations | array | No | ||||
| data.trivia.locations[].location | string | No | Paris, France | |||
| data.trivia.locations[].note | string | No | Ariadne learns to build dreams | |||
| data.trivia.locations[].public_signals | integer | No | 2 | |||
| data.trivia.public_page_derived | boolean | No | true | |||
| data.trivia.source_url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| data.trivia.total | integer | No | 21 | |||
| data.trivia.type | string | No | trivia | |||
| data.trivia.url | string | No | https://www.imdb.com/title/tt1375666/trivia/ | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/imdb/title/public-facts-analysis" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms