Endpoint Playground
Test Crawlora's Box Office Mojo weekend estimates 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/weekend/domestic/estimates?year=2025&week=52" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| year | integer | Yes | 2025 | Domestic weekend year, from 1982 through 2100 |
| week | integer | Yes | 52 | Weekend number, 1 through 53 |
{
"code": 200,
"msg": "OK",
"data": {
"year": 2025,
"week": 52,
"results": [
{
"estimated_rank": 1,
"release": "Avatar: Fire and Ash",
"estimated_gross_raw": "$62,000,000",
"actual_gross_raw": "$63,087,667"
}
],
"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 estimate-vs-actual rows from Box Office Mojo's public domestic weekend estimates chart. Empty upstream weekend pages return a typed not-found error rather than an empty success.
{
"code": 200,
"msg": "OK",
"data": {
"year": 2025,
"week": 52,
"results": [
{
"estimated_rank": 1,
"release": "Avatar: Fire and Ash",
"estimated_gross_raw": "$62,000,000",
"actual_gross_raw": "$63,087,667"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/weekend/domestic/estimates?year=<year>&week=<week>" \
-H "x-api-key: $CRAWLORA_API_KEY"