Endpoint Playground
Test Crawlora's Box Office Mojo domestic yearly 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/year/domestic?year=2025" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| year | integer | Yes | 2025 | Domestic box office year, from 1977 through 2100 |
{
"code": 200,
"msg": "OK",
"data": {
"year": 2025,
"grosses_option": "calendar_grosses",
"results": [
{
"rank": 1,
"release": "Lilo & Stitch",
"gross_raw": "$423,778,855"
}
],
"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 release rows from Box Office Mojo's public domestic yearly calendar-grosses chart.
{
"code": 200,
"msg": "OK",
"data": {
"year": 2025,
"grosses_option": "calendar_grosses",
"results": [
{
"rank": 1,
"release": "Lilo & Stitch",
"gross_raw": "$423,778,855"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/year/domestic?year=<year>" \
-H "x-api-key: $CRAWLORA_API_KEY"