Endpoint Playground
Test Crawlora's Box Office Mojo release detail 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/release?id=rl3389031937&path=%2Frelease%2Frl3389031937%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Frelease%2Frl3389031937%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | rl3389031937 | Box Office Mojo release id |
| path | string | No | /release/rl3389031937/ | Box Office Mojo release path |
| url | string | No | https://www.boxofficemojo.com/release/rl3389031937/ | Absolute https://www.boxofficemojo.com release URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar: Fire and Ash",
"release_id": "rl3389031937",
"summary": {
"distributor": "20th Century Studios",
"opening_raw": "$89,160,860"
},
"daily_grosses": [
{
"date": "Dec 25",
"daily_gross_raw": "$24,096,415"
}
],
"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 Box Office Mojo release summary fields and domestic daily rows from a public release page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar: Fire and Ash",
"release_id": "rl3389031937",
"summary": {
"distributor": "20th Century Studios",
"opening_raw": "$89,160,860"
},
"daily_grosses": [
{
"date": "Dec 25",
"daily_gross_raw": "$24,096,415"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/release" \
-H "x-api-key: $CRAWLORA_API_KEY"