Endpoint Playground
Test Crawlora's Box Office Mojo title detail 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/title?id=tt0499549&path=%2Ftitle%2Ftt0499549%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Ftitle%2Ftt0499549%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | tt0499549 | Box Office Mojo title id |
| path | string | No | /title/tt0499549/ | Box Office Mojo title path |
| url | string | No | https://www.boxofficemojo.com/title/tt0499549/ | Absolute https://www.boxofficemojo.com title URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar",
"title_id": "tt0499549",
"release_groups": [
{
"name": "Original Release",
"markets": "77 markets",
"worldwide": 2743577587,
"worldwide_raw": "$2,743,577,587"
}
],
"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 Box Office Mojo title release-group and market-gross tables from a public title page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Avatar",
"title_id": "tt0499549",
"release_groups": [
{
"name": "Original Release",
"markets": "77 markets",
"worldwide": 2743577587,
"worldwide_raw": "$2,743,577,587"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/title" \
-H "x-api-key: $CRAWLORA_API_KEY"