IMDb API endpoint
Use Crawlora's IMDb title box office summary 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/box-officeReturns a title's public box-office summary: lifetime gross by market (domestic, international, worldwide), the domestic opening weekend, and the production budget. IMDb reports each figure independently, so a real title with no box office data (most TV series, many non-theatrical titles) returns `has_box_office: false` with every figure omitted rather than an error. Pass exactly one of `id` or `url`. 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/box-office" \ -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.
- IMDb reports each figure independently. A real title with no reported box office data — most TV series and many non-theatrical titles — returns `has_box_office: false` with `production_budget`, `opening_weekend`, and every `lifetime_gross` field omitted, not an error. - `lifetime_gross.domestic`/`.international`/`.worldwide` are each an independent `{amount, currency}` figure and may be present or absent on their own. - `opening_weekend` covers the domestic market only; IMDb was verified to return no data for international or worldwide opening-weekend queries, so this API does not expose them. - A well-formed but unresolvable title ID returns a not-found error. - If IMDb changes the shape of this data, the endpoint fails closed with an upstream parser-drift error. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": "tt0111161", "title": "The Shawshank Redemption", "url": "https://www.imdb.com/title/tt0111161/", "has_box_office": true, "production_budget": { "amount": 25000000, "currency": "USD" }, "opening_weekend": { "gross": { "amount": 727327, "currency": "USD" }, "theater_count": 33, "weekend_start_date": "1994-09-23", "weekend_end_date": "1994-09-25" }, "lifetime_gross": { "domestic": { "amount": 28767189, "currency": "USD" }, "international": { "amount": 628529, "currency": "USD" }, "worldwide": { "amount": 29425268, "currency": "USD" } } } } ```
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": {
"id": "tt0111161",
"title": "The Shawshank Redemption",
"url": "https://www.imdb.com/title/tt0111161/",
"has_box_office": true,
"production_budget": {
"amount": 25000000,
"currency": "USD"
},
"opening_weekend": {
"gross": {
"amount": 727327,
"currency": "USD"
},
"theater_count": 33,
"weekend_start_date": "1994-09-23",
"weekend_end_date": "1994-09-25"
},
"lifetime_gross": {
"domestic": {
"amount": 28767189,
"currency": "USD"
},
"international": {
"amount": 628529,
"currency": "USD"
},
"worldwide": {
"amount": 29425268,
"currency": "USD"
}
}
}
}Request schema
No body schema
Response schema
#/definitions/imdb.titleBoxOfficeResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | imdb.TitleBoxOfficeResponse | No | ||||
| data.fetched_at | string | No | 2026-09-17T14:46:16Z | |||
| data.has_box_office | boolean | No | true | |||
| data.id | string | No | tt0111161 | |||
| data.lifetime_gross | imdb.LifetimeGross | No | ||||
| data.lifetime_gross.domestic | imdb.Money | No | ||||
| data.lifetime_gross.domestic.amount | integer | No | 28767189 | |||
| data.lifetime_gross.domestic.currency | string | No | USD | |||
| data.lifetime_gross.international | imdb.Money | No | ||||
| data.lifetime_gross.international.amount | integer | No | 28767189 | |||
| data.lifetime_gross.international.currency | string | No | USD | |||
| data.lifetime_gross.worldwide | imdb.Money | No | ||||
| data.lifetime_gross.worldwide.amount | integer | No | 28767189 | |||
| data.lifetime_gross.worldwide.currency | string | No | USD | |||
| data.opening_weekend | imdb.OpeningWeekend | No | ||||
| data.opening_weekend.gross | imdb.Money | No | ||||
| data.opening_weekend.gross.amount | integer | No | 28767189 | |||
| data.opening_weekend.gross.currency | string | No | USD | |||
| data.opening_weekend.theater_count | integer | No | 3 | |||
| data.opening_weekend.weekend_end_date | string | No | 1994-09-25 | |||
| data.opening_weekend.weekend_start_date | string | No | 1994-09-23 | |||
| data.production_budget | imdb.Money | No | ||||
| data.production_budget.amount | integer | No | 28767189 | |||
| data.production_budget.currency | string | No | USD | |||
| data.source_url | string | No | https://www.imdb.com/title/tt0111161/ | |||
| data.title | string | No | The Shawshank Redemption | |||
| data.url | string | No | https://www.imdb.com/title/tt0111161/ | |||
| 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/box-office" \
-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