Endpoint Playground
Test Crawlora's Box Office Mojo daily box office 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/date/domestic?date=2025-12-25" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| date | string | Yes | 2025-12-25 | Domestic box office date in YYYY-MM-DD format |
{
"code": 200,
"msg": "OK",
"data": {
"date": "2025-12-25",
"results": [
{
"rank": 1,
"release": "Avatar: Fire and Ash",
"daily_gross_raw": "$24,631,680"
}
],
"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 public domestic daily chart. Empty upstream daily pages return a typed not-found error rather than an empty success.
{
"code": 200,
"msg": "OK",
"data": {
"date": "2025-12-25",
"results": [
{
"rank": 1,
"release": "Avatar: Fire and Ash",
"daily_gross_raw": "$24,631,680"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/date/domestic?date=<date>" \
-H "x-api-key: $CRAWLORA_API_KEY"