Endpoint Playground
Test Crawlora's Box Office Mojo Dataset Item API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/boxofficemojo/items/<title_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| title_id (path) | string | Yes | Title id (IMDb tt… id), e.g. tt0499549 |
{
"code": 200,
"msg": "OK",
"data": {
"title_id": "tt0499549",
"title": "Avatar",
"lifetime_gross_worldwide": 2923710708,
"lifetime_rank_worldwide": 1,
"gross_band": "over_1b",
"is_billion_dollar": true,
"hydrated": true,
"release_group_count": 6,
"year_grosses": [
{
"year": 2009,
"worldwide": 2743577587
}
]
}
}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 one Box Office Mojo dataset record by title id (IMDb `tt…` id used on Box Office Mojo title pages), including lifetime grosses, year history, release groups and market grosses when hydrated. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"title_id": "tt0499549",
"title": "Avatar",
"lifetime_gross_worldwide": 2923710708,
"lifetime_rank_worldwide": 1,
"gross_band": "over_1b",
"is_billion_dollar": true,
"hydrated": true,
"release_group_count": 6,
"year_grosses": [
{
"year": 2009,
"worldwide": 2743577587
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/boxofficemojo/items/<title_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"