Endpoint Playground
Test Crawlora's Box Office Mojo showdowns 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/showdowns" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"public_page_derived": true,
"results": [
{
"rank": 1,
"name": "Marvel Cinematic Universe vs. DC Extended Universe",
"id": "sd943519236",
"path": "/showdown/sd943519236/",
"movies": 37,
"domestic_gross": 12345678901
}
]
}
}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 comparison rows from Box Office Mojo's public showdowns page.
{
"code": 200,
"msg": "OK",
"data": {
"public_page_derived": true,
"results": [
{
"rank": 1,
"name": "Marvel Cinematic Universe vs. DC Extended Universe",
"id": "sd943519236",
"path": "/showdown/sd943519236/",
"movies": 37,
"domestic_gross": 12345678901
}
]
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/showdowns" \
-H "x-api-key: $CRAWLORA_API_KEY"