Endpoint Playground
Test Crawlora's Box Office Mojo genre 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/genre?id=sg3621777665&path=%2Fgenre%2Fsg3621777665%2F&url=https%3A%2F%2Fwww.boxofficemojo.com%2Fgenre%2Fsg3621777665%2F" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | sg3621777665 | Box Office Mojo genre id |
| path | string | No | /genre/sg3621777665/ | Box Office Mojo genre path |
| url | string | No | https://www.boxofficemojo.com/genre/sg3621777665/ | Absolute https://www.boxofficemojo.com genre URL |
{
"code": 200,
"msg": "OK",
"data": {
"kind": "genre",
"name": "Animation",
"id": "sg3621777665",
"results": [
{
"rank": 1,
"release": "Avatar",
"title_id": "tt0499549",
"lifetime_gross": 785221649,
"opening": 77025481
}
],
"summary": {
"movie_count": 900,
"top_release": "Avatar"
}
}
}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 genre page. Pass exactly one of `id`, `path`, or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"kind": "genre",
"name": "Animation",
"id": "sg3621777665",
"results": [
{
"rank": 1,
"release": "Avatar",
"title_id": "tt0499549",
"lifetime_gross": 785221649,
"opening": 77025481
}
],
"summary": {
"movie_count": 900,
"top_release": "Avatar"
}
}
}curl "https://api.crawlora.net/api/v1/boxofficemojo/genre" \
-H "x-api-key: $CRAWLORA_API_KEY"