Endpoint Playground
Test Crawlora's Box Office Mojo release calendar 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/calendar?year=2026&month=9" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| year | integer | Yes | 2026 | Calendar year, from 1921 through 2100 |
| month | integer | Yes | 9 | Calendar month, 1 through 12 |
{
"code": 200,
"msg": "OK",
"data": {
"year": 2026,
"month": 9,
"results": [
{
"date": "September 4, 2026",
"releases": [
{
"release": "By Any Means",
"release_path": "/release/rl564363265/",
"distributor": "Sony Pictures Entertainment (SPE)",
"scale": "Wide"
}
]
}
],
"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 grouped rows from Box Office Mojo's public domestic release schedule. Provide `year` and `month`.
{
"code": 200,
"msg": "OK",
"data": {
"year": 2026,
"month": 9,
"results": [
{
"date": "September 4, 2026",
"releases": [
{
"release": "By Any Means",
"release_path": "/release/rl564363265/",
"distributor": "Sony Pictures Entertainment (SPE)",
"scale": "Wide"
}
]
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/calendar?year=<year>&month=<month>" \
-H "x-api-key: $CRAWLORA_API_KEY"