Discover/Box Office Mojo API
live

Box Office Mojo APIboxofficemojo.com

Access Box Office Mojo data via API: movie gross totals, daily charts, all-time worldwide rankings, release schedules, and performance time-series.

Endpoint health
verified 6d ago
get_release_schedule
get_all_time_worldwide
get_daily_chart
get_movie_details
get_movie_release_performance
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Box Office Mojo API?

The Box Office Mojo API exposes 6 endpoints covering movie search, detailed gross summaries, domestic daily charts, and all-time worldwide rankings. The get_movie_details endpoint returns domestic, international, and worldwide lifetime grosses alongside distributor, budget, MPAA rating, runtime, and market breakdowns by region. Whether you are tracking a film's opening weekend or comparing all-time earners, the endpoints chain together via shared identifiers like imdb_id and release_id.

Try it
Movie title search query.
api.parse.bot/scraper/19716ded-a751-4e1a-a385-4ee11fac2ab2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/19716ded-a751-4e1a-a385-4ee11fac2ab2/search_movies?query=Avatar' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace boxofficemojo-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Box Office Mojo SDK — search movies, explore charts, drill into performance."""
from parse_apis.box_office_mojo_api import BoxOfficeMojo, PerformanceType, MovieNotFound

client = BoxOfficeMojo()

# Search for movies by title and access typed fields.
for movie in client.moviesummaries.search(query="Avatar", limit=3):
    print(movie.title, movie.imdb_id, movie.url)

# Drill into the first search result's full details.
result = client.moviesummaries.search(query="Inception", limit=1).first()
if result:
    detail = result.details()
    print(detail.title, detail.gross_summary)

# Get today's daily chart and inspect top entries.
for entry in client.charts.daily(limit=5):
    print(entry.release_name, entry.daily, entry.theaters, entry.distributor)

# All-time worldwide rankings.
for record in client.charts.all_time_worldwide(limit=3):
    print(record.title, record.worldwide_lifetime_gross, record.year)

# Fetch release performance using the PerformanceType enum.
top_entry = client.charts.daily(limit=1).first()
if top_entry:
    try:
        perf = client.releaseperformance(release_id=top_entry.release_id)
        for day in perf.list(type=PerformanceType.DAILY, limit=3):
            print(day.date, day.daily, day.rank)
    except MovieNotFound as exc:
        print(f"Release not found: {exc}")

# Upcoming releases schedule.
for upcoming in client.charts.upcoming(limit=3):
    print(upcoming.title, upcoming.date, upcoming.scale)

print("exercised: search / details / daily chart / all_time_worldwide / release performance / upcoming schedule")
All endpoints · 6 totalmissing one? ·

Full-text search for movies by title keyword. Returns a list of matching movies with their IMDb IDs and Box Office Mojo URLs. Results are ordered by relevance. No pagination — a single page of results is returned.

Input
ParamTypeDescription
queryrequiredstringMovie title search query.
Response
{
  "type": "object",
  "fields": {
    "results": "array of movie search result objects with title, imdb_id, url, and metadata"
  },
  "sample": {
    "data": {
      "results": [
        {
          "url": "https://www.boxofficemojo.com/title/tt0499549/?ref_=bo_se_r_1",
          "title": "Avatar",
          "imdb_id": "tt0499549",
          "metadata": ""
        },
        {
          "url": "https://www.boxofficemojo.com/title/tt1757678/?ref_=bo_se_r_2",
          "title": "Avatar: Fire and Ash",
          "imdb_id": "tt1757678",
          "metadata": ""
        }
      ]
    },
    "status": "success"
  }
}

About the Box Office Mojo API

Movie Search and Detail

Use search_movies with a query string to retrieve matching titles along with their imdb_id and Box Office Mojo URLs. Pass any imdb_id into get_movie_details to get the full financial picture: gross_summary breaks out domestic, international, and worldwide totals; summary includes domestic_distributor, budget, earliest_release_date, mpaa, running_time, and genres; and market_breakdowns maps individual regions to rows of performance data. The releases array within that response lists each release version (theatrical, re-release, etc.) with its own release_id.

Performance Time-Series

get_movie_release_performance accepts a release_id and an optional type parameter (daily, weekend, or weekly) to return a full time-series table. Each row in the performance array carries Date, DOW, Rank, Daily earnings, Theaters, Avg, To Date cumulative gross, and Day number in release. This lets you reconstruct a film's full theatrical run from opening day through the final weekend.

Charts and Rankings

get_daily_chart takes an optional date in YYYY-MM-DD format and returns the domestic daily chart for that date, or the most recent available if the parameter is omitted. Each row includes TD (rank), Release, Daily, Theaters, Avg, To Date, Days, Distributor, and a release_id you can pass directly to get_movie_release_performance. get_all_time_worldwide requires no inputs and returns the top-grossing films of all time with Worldwide Lifetime Gross, Domestic Lifetime Gross, Foreign Lifetime Gross, and percentage splits — each entry includes an imdb_id for further lookup.

Release Schedule

get_release_schedule returns upcoming theatrical releases ordered chronologically, with date, title, distributor, scale (Wide or Limited), and a release_id that becomes active once the film opens and chart data begins accumulating.

Reliability & maintenanceVerified

The Box Office Mojo API is a managed, monitored endpoint for boxofficemojo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when boxofficemojo.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official boxofficemojo.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a film investment dashboard comparing budget against worldwide gross for wide-release titles.
  • Track a specific movie's opening-weekend velocity using get_movie_release_performance in weekly mode.
  • Monitor the domestic daily chart via get_daily_chart to detect surprise breakout performances.
  • Populate an all-time box office leaderboard using get_all_time_worldwide with domestic and foreign splits.
  • Alert system for upcoming studio releases by polling get_release_schedule and filtering by distributor.
  • Cross-reference IMDb metadata with box office performance by chaining search_moviesget_movie_details.
  • Analyze theater-count expansion curves over a film's run using Theaters and Day fields from get_movie_release_performance.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Box Office Mojo have an official developer API?+
Box Office Mojo does not publish an official developer API. IMDb, which owns the site, offers IMDb Developer datasets (developer.imdb.com) but those are bulk data files focused on title metadata rather than box office revenue charts or daily rankings.
What does `get_movie_details` return beyond the gross totals?+
In addition to domestic, international, and worldwide lifetime grosses, the summary object includes domestic_distributor, domestic_opening, budget, earliest_release_date, mpaa, running_time, and genres. The market_breakdowns object further segments performance by individual international regions, and the releases array lists every tracked release version (e.g., original run, re-release) each with its own release_id.
Does `search_movies` support pagination or filtering by year?+
Search returns a single page of relevance-ranked results with no pagination and no built-in year or genre filter. The response includes title, imdb_id, and url for each match. You can fork the API on Parse and revise it to add server-side filtering or multi-page traversal.
Does the API cover international daily charts or only the domestic (US) chart?+
The get_daily_chart endpoint returns the domestic US chart only. International market data is accessible at the title level via market_breakdowns in get_movie_details, but there are no per-country daily ranking charts currently exposed. You can fork the API on Parse and revise it to add international chart endpoints.
How current is the daily chart data, and what happens if I query a future date?+
Daily chart data reflects what Box Office Mojo has published; weekend estimates typically appear Saturday or Sunday and actuals follow Monday. Querying a date with no published chart returns no data. Omitting the date parameter from get_daily_chart always returns the most recent available chart, which is the safest default for automated polling.
Page content last updated . Spec covers 6 endpoints from boxofficemojo.com.
Related APIs in EntertainmentSee all →
the-numbers.com API
Search and discover comprehensive movie industry data including box office statistics, cast and crew information, and all-time records directly from the-numbers.com. Track daily box office charts and retrieve detailed movie information to stay informed about film performance and historical cinema records.
piaofang.maoyan.com API
Track real-time movie box office performance, search films and shows, and monitor streaming popularity rankings across China's entertainment market. Discover theater rankings, upcoming release schedules, and movie showtimes to stay updated on cinema trends and audience engagement metrics.
mymovies.it API
Search for movies and showtimes across Italian cinemas, find what's playing near you by city, and discover detailed information about films, cast members, and box office rankings. Browse upcoming releases and get comprehensive cinema details to plan your movie nights.
movietickets.com API
Find movie showtimes and theaters near you, browse now playing and coming soon films, and get detailed movie information including ratings and schedules. Plan your movie nights by checking availability across theaters and viewing comprehensive movie metadata all in one place.
imdb.com API
Search and retrieve comprehensive IMDb movie information including ratings, genres, cast, crew, and box office data in one place. Get full cast and crew details alongside plot summaries and financial insights for any movie title.
filmaffinity.com API
Search FilmAffinity's film database by title, director, genre, year, and more. Retrieve detailed movie information including cast, crew, synopsis, ratings, and user reviews. Access top-rated lists, box office rankings, theatrical and streaming releases, and full filmographies for cast and crew members.
zgdypw.cn API
Track China's movie box office performance with daily rankings by movie, cinema, circuit, and city, plus access detailed weekly and monthly reports for comprehensive market analysis. Monitor industry trends through curated market analysis articles and reports to stay informed on the Chinese film industry's performance and growth.
fandango.com API
Search for movies and retrieve nearby theater listings with showtimes by ZIP code and date, plus showtimes for a specific movie at nearby theaters.