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