Endpoint Playground
Test Crawlora's Box Office Mojo brand 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/brand?id=bn3732077058&path=%2Fbrand%2Fbn3732077058%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Fbrand%2Fbn3732077058%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | bn3732077058 | Box Office Mojo brand id |
| path | string | No | /brand/bn3732077058/ | Box Office Mojo brand path |
| url | string | No | https://www.boxofficemojo.com/brand/bn3732077058/ | Absolute https://www.boxofficemojo.com brand URL |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "brand",
"name": "Marvel Comics",
"id": "bn3732077058",
"results": [
{
"rank": 1,
"release": "The Avengers",
"title_id": "tt0848228",
"lifetime_gross": 623357910,
"opening": 207438708
}
],
"summary": {
"movie_count": 75,
"top_release": "The Avengers"
}
}
}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 a public Box Office Mojo brand page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "brand",
"name": "Marvel Comics",
"id": "bn3732077058",
"results": [
{
"rank": 1,
"release": "The Avengers",
"title_id": "tt0848228",
"lifetime_gross": 623357910,
"opening": 207438708
}
],
"summary": {
"movie_count": 75,
"top_release": "The Avengers"
}
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/brand" \
-H "x-api-key: $CRAWLORA_API_KEY"