Discover/Landmark Theatres API
live

Landmark Theatres APIlandmarktheatres.com

Access Landmark Theatres movie listings, showtimes with ticketing URLs, occupancy data, and a full US theater directory via a simple REST API.

Endpoint health
verified 3d ago
get_showtimes
list_theaters
now_playing
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Landmark Theatres API?

The Landmark Theatres API covers 3 endpoints that expose movie listings, dated showtimes, and a complete theater directory for Landmark Theatres locations across the United States. The get_showtimes endpoint returns individual screening times with direct ticketing URLs and occupancy rates. The list_theaters endpoint provides geocoordinates, screen counts, and time zones for every location.

Try it
Direct theater ID (e.g. 'X00QM', 'X019B'). Overrides theater_name if provided. Get IDs from list_theaters endpoint.
Theater name to search for (e.g. 'Kendall Square', 'Denver Pavilions'). Partial matching supported.
api.parse.bot/scraper/016221b1-56cc-4f50-bec1-bb385802ef14/<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/016221b1-56cc-4f50-bec1-bb385802ef14/now_playing?theater_id=X00TM&theater_name=Kendall+Square' \
  -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 landmarktheatres-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: Landmark Theatres SDK — discover theaters, browse movies, check showtimes."""
from parse_apis.landmark_theatres_api import LandmarkTheatres, TheaterNotFound

client = LandmarkTheatres()

# List all theater locations (total-items cap via limit=)
for theater in client.theaters.list(limit=5):
    print(theater.name, theater.city, theater.state, f"({theater.screens} screens)")

# Construct a theater by ID and get its currently playing movies
palo_alto = client.theater(id="X00TM")
movie = palo_alto.now_playing(limit=1).first()
if movie:
    print(movie.title, movie.rating, movie.runtime_minutes, movie.genres)

# Get showtimes for tomorrow at the same theater
if movie:
    showtime_entry = palo_alto.showtimes(date="2026-06-12", limit=1).first()
    if showtime_entry:
        for screening in showtime_entry.showtimes:
            print(screening.starts_at, screening.occupancy_rate, screening.ticketing_url)

# Typed error handling: catch a bad theater lookup
try:
    bad = client.theater(id="INVALID_ID")
    bad.now_playing(limit=1).first()
except TheaterNotFound as exc:
    print(f"Theater not found: {exc}")

print("exercised: theaters.list / theater.now_playing / theater.showtimes / TheaterNotFound")
All endpoints · 3 totalmissing one? ·

Get all movies currently playing or scheduled at a specific Landmark Theatre location. Returns full movie details including title, runtime, genres, cast, directors, synopsis, rating, poster URL, trailer URL, and scheduled dates. If neither theater_id nor theater_name is provided, returns results for a default location (Midtown Art Cinema).

Input
ParamTypeDescription
theater_idstringDirect theater ID (e.g. 'X00QM', 'X019B'). Overrides theater_name if provided. Get IDs from list_theaters endpoint.
theater_namestringTheater name to search for (e.g. 'Kendall Square', 'Denver Pavilions'). Partial matching supported.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of movies",
    "movies": "array of movie objects with id, title, runtime_minutes, genres, directors, cast, synopsis, rating, advisory, poster_url, trailer_url, scheduled_dates, release_date",
    "theater_id": "string theater identifier",
    "theater_name": "string resolved theater name or ID"
  },
  "sample": {
    "data": {
      "total": 26,
      "movies": [
        {
          "id": "313220",
          "cast": [
            "Chiwetel Ejiofor",
            "Renate Reinsve",
            "Mark Duplass"
          ],
          "title": "Backrooms",
          "genres": [
            "Horror",
            "Science fiction"
          ],
          "rating": "R",
          "advisory": "for language and some violent content/bloody images.",
          "synopsis": "A strange doorway appears in the basement of a furniture showroom.",
          "directors": [
            "Kane Parsons"
          ],
          "poster_url": "https://all.web.img.acsta.net/img/4e/34/4e34162d7489c977da291d752efb2b68.jpg",
          "trailer_url": "https://m.boxoffice.media/QuickTime/393041_hd.mov",
          "release_date": "2026-05-29T00:00:00.000Z",
          "runtime_minutes": 111,
          "scheduled_dates": [
            "2026-06-10",
            "2026-06-11",
            "2026-06-12"
          ]
        }
      ],
      "theater_id": "X00QM",
      "theater_name": "Midtown Art Cinema"
    },
    "status": "success"
  }
}

About the Landmark Theatres API

What the API Returns

The now_playing endpoint accepts either a theater_id (e.g. X00QM) or a partial theater_name string and returns an array of movie objects for that location. Each movie object includes title, runtime_minutes, genres, directors, cast, synopsis, rating, advisory, poster_url, and trailer_url, along with the scheduled dates for which the film is available. The endpoint resolves the theater and echoes back both theater_id and theater_name so lookups are unambiguous.

Showtimes Detail

The get_showtimes endpoint adds a date parameter (format YYYY-MM-DD, defaults to today) and returns a per-movie showtimes array. Each showtime entry includes the screening start time, a direct ticketing URL, occupancy rate, and accessibility tags (e.g. closed captions, audio description). Combining theater_id and date is the most precise query pattern; partial theater_name matching also works when the exact ID is not known.

Theater Directory

The list_theaters endpoint takes no inputs and returns all Landmark locations sorted alphabetically. Each theater object includes id, name, address, city, state, zip, phone, screens, time_zone, latitude, longitude, and description. The id values returned here are the theater_id strings used as input to the other two endpoints, so this endpoint is the natural starting point for building location-aware applications.

Reliability & maintenanceVerified

The Landmark Theatres API is a managed, monitored endpoint for landmarktheatres.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when landmarktheatres.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 landmarktheatres.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
3d ago
Latest check
3/3 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 local movie finder that surfaces what's playing near a user based on theater geocoordinates from list_theaters.
  • Send daily showtime digest emails using get_showtimes with a specific date and theater, including direct ticketing links.
  • Display cast, synopsis, and poster images for now-playing films in a venue app using fields from now_playing.
  • Aggregate occupancy rates across Landmark locations to identify high-demand screenings.
  • Power a chatbot that answers 'what's playing tonight at the Kendall Square theater' using partial name matching.
  • Map all Landmark locations with screen counts and time zones using latitude, longitude, and time_zone from list_theaters.
  • Filter currently playing films by genre or rating using the genres and rating fields from now_playing.
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 Landmark Theatres have an official developer API?+
Landmark Theatres does not publish a public developer API or documented data feed for third-party use.
What does the `get_showtimes` endpoint return beyond screening times?+
Each showtime entry includes the start time, a direct ticketing URL for that specific screening, an occupancy rate, and accessibility tags such as closed captions or audio description. The response also carries movie-level fields like runtime_minutes, rating, and poster_url so you don't need a separate call to display a full showtime card.
Does the API cover historical showtimes or only current and upcoming dates?+
The API covers currently playing and upcoming scheduled films. Past showtimes are not exposed. You can fork this API on Parse and revise it to add a caching or archiving layer if historical schedule data is important to your use case.
Can I retrieve showtimes for all theaters at once in a single call?+
Currently, both now_playing and get_showtimes require a theater_id or theater_name and return results for one location at a time. You can retrieve the full theater list from list_theaters and iterate over the IDs. If you need a single bulk endpoint, you can fork this API on Parse and revise it to add a multi-theater query endpoint.
Are there any known coverage limitations with the theater directory?+
The list_theaters endpoint covers Landmark Theatres US locations as listed on their website. Theaters that have closed or are temporarily suspended may appear or be absent depending on how the source reflects their current status. No Canadian or international locations are included in the current directory.
Page content last updated . Spec covers 3 endpoints from landmarktheatres.com.
Related APIs in EntertainmentSee all →
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.
amctheatres.com API
Find movie showtimes and browse theatre locations across AMC Theatres, with the ability to filter by specific theatre, date, and market area. Quickly discover what's playing and plan your cinema visits with current availability at your preferred locations.
atomtickets.com API
Find movie showtimes, theater locations, and ticket prices in your area, then browse current and upcoming films with detailed information. Search for specific movies or theaters to compare showtimes and pricing across venues near you.
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.
cinemark.cl API
Discover movies playing at Cinemark Chile cinemas, check showtimes and ticket prices, browse concession options, and explore current promotions and rewards program details. Plan your cinema visit by searching available theaters, viewing movie information, and accessing exclusive deals all in one place.
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.
yorck.de API
Browse current and upcoming films at Berlin's Yorck Kinogruppe cinemas, check showtimes and schedules, and explore special events and membership options. Search for movies, view detailed cinema information, and plan your visits with comprehensive scheduling data across the entire theater chain.
maoyan.com API
Find and browse now-showing and coming-soon movies with detailed information, then discover nearby cinemas and filter them by location and amenities. Get comprehensive movie details and search through Chinese movie theaters to plan your movie outings.