Endpoint Playground
Test Crawlora's Box Office Mojo weekend 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/weekend/domestic?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": [
{
"rank": 1,
"release": "Avatar: Fire and Ash",
"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 rows from Box Office Mojo's public domestic weekend 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": [
{
"rank": 1,
"release": "Avatar: Fire and Ash",
"gross_raw": "$63,087,667"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/weekend/domestic?year=<year>&week=<week>" \
-H "x-api-key: $CRAWLORA_API_KEY"