Endpoint Playground
Test Crawlora's Facet the Box Office Mojo dataset 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/facets?facet=gross_band" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | gross_band | Facet enum: gross_band, years_active, lifetime_year, franchise_names, brand_names, genre_names, hydrated, is_billion_dollar, in_lifetime_top_1000_ww |
| q | string | No | Full-text query, max 256 characters | |
| title_id | string | No | Exact title id (IMDb tt… id used by Box Office Mojo), max 32 characters | |
| year | integer | No | Year in years_active | |
| lifetime_year | integer | No | Primary lifetime chart year | |
| gross_band | string | No | Gross band filter | |
| franchise | string | No | Franchise name filter, max 128 characters | |
| brand | string | No | Brand name filter, max 128 characters | |
| genre | string | No | Genre name filter, max 128 characters | |
| in_lifetime_top_1000 | boolean | No | Only titles in the lifetime worldwide top 1000 chart | |
| min_worldwide | integer | No | Minimum lifetime worldwide gross | |
| max_worldwide | integer | No | Maximum lifetime worldwide gross | |
| min_domestic | integer | No | Minimum lifetime domestic gross | |
| min_foreign_share | number | No | Minimum foreign share of worldwide gross, 0 through 1 | |
| max_domestic_share | number | No | Maximum domestic share of worldwide gross, 0 through 1 | |
| hydrated | boolean | No | Hydrated filter | |
| is_billion_dollar | boolean | No | Only titles with worldwide gross of at least $1B |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "boxofficemojo",
"facet": "gross_band",
"items": [
{
"value": "over_1b",
"count": 50
},
{
"value": "500m_1b",
"count": 120
}
]
}
}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 terms-aggregation counts for one facet of the Box Office Mojo dataset, scoped to the same filters as search. Facet enum: `gross_band`, `years_active`, `lifetime_year`, `franchise_names`, `brand_names`, `genre_names`, `hydrated`, `is_billion_dollar`, `in_lifetime_top_1000_ww`. gross_band enum: `under_50m`, `50_100m`, `100_250m`, `250_500m`, `500m_1b`, `over_1b`. 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": {
"dataset": "boxofficemojo",
"facet": "gross_band",
"items": [
{
"value": "over_1b",
"count": 50
},
{
"value": "500m_1b",
"count": 120
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/boxofficemojo/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"