Endpoint Playground
Test Crawlora's Box Office Mojo release group 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-group?id=gr3486798341&path=%2Freleasegroup%2Fgr3486798341%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Freleasegroup%2Fgr3486798341%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | gr3486798341 | Box Office Mojo release-group id |
| path | string | No | /releasegroup/gr3486798341/ | Box Office Mojo release-group path |
| url | string | No | https://www.boxofficemojo.com/releasegroup/gr3486798341/ | Absolute https://www.boxofficemojo.com release-group URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar",
"release_group_id": "gr3486798341",
"regions": [
{
"region": "Domestic",
"markets": [
{
"market": "Domestic",
"release_date": "Dec 18, 2009",
"opening_raw": "$77,025,481",
"gross_raw": "$749,766,139"
}
]
}
],
"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 market release rows grouped by region from a public Box Office Mojo release-group page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar",
"release_group_id": "gr3486798341",
"regions": [
{
"region": "Domestic",
"markets": [
{
"market": "Domestic",
"release_date": "Dec 18, 2009",
"opening_raw": "$77,025,481",
"gross_raw": "$749,766,139"
}
]
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/release-group" \
-H "x-api-key: $CRAWLORA_API_KEY"