Endpoint Playground
Test Crawlora's Box Office Mojo lifetime gross chart 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/boxofficemojo/lifetime-grosses?area=worldwide&offset=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| area | string | No | worldwide | Chart area. Allowed values: worldwide, domestic |
| offset | integer | No | 0 | Chart page offset. Allowed values: 0, 200, 400, 600, 800 |
{
"code": 200,
"msg": "OK",
"data": {
"area": "worldwide",
"offset": 0,
"range": "1-200 of 1,000",
"results": [
{
"rank": 1,
"title": "Avatar",
"title_id": "tt0499549",
"lifetime_gross": 2923710708,
"lifetime_gross_raw": "$2,923,710,708",
"year": 2009
}
],
"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 normalized rows from Box Office Mojo's credential-free lifetime gross chart. `area` values: `worldwide`, `domestic`.
{
"code": 200,
"msg": "OK",
"data": {
"area": "worldwide",
"offset": 0,
"range": "1-200 of 1,000",
"results": [
{
"rank": 1,
"title": "Avatar",
"title_id": "tt0499549",
"lifetime_gross": 2923710708,
"lifetime_gross_raw": "$2,923,710,708",
"year": 2009
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/lifetime-grosses" \
-H "x-api-key: $CRAWLORA_API_KEY"