Endpoint Playground
Test Crawlora's Box Office Mojo showdown 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/showdown?id=sd943519236&path=%2Fshowdown%2Fsd943519236%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Fshowdown%2Fsd943519236%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | sd943519236 | Box Office Mojo showdown id |
| path | string | No | /showdown/sd943519236/ | Box Office Mojo showdown path |
| url | string | No | https://www.boxofficemojo.com/showdown/sd943519236/ | Absolute https://www.boxofficemojo.com showdown URL |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Marvel Cinematic Universe vs. DC Extended Universe",
"id": "sd943519236",
"results": [
{
"rank": 1,
"title": "The Avengers",
"title_id": "tt0848228",
"domestic_gross": 623357910,
"opening": 207438708,
"release_date": "2012-05-04"
}
],
"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 comparison metrics from a public Box Office Mojo showdown page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Marvel Cinematic Universe vs. DC Extended Universe",
"id": "sd943519236",
"results": [
{
"rank": 1,
"title": "The Avengers",
"title_id": "tt0848228",
"domestic_gross": 623357910,
"opening": 207438708,
"release_date": "2012-05-04"
}
],
"summary": {
"movie_count": 37,
"top_release": "The Avengers"
}
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/showdown" \
-H "x-api-key: $CRAWLORA_API_KEY"