Discover/Everyman Cinema API
live

Everyman Cinema APIeverymancinema.com

Access Everyman Cinema film schedules, showtimes, booking URLs, and venue data for all 50 UK locations via a simple REST API.

This API takes change requests — .
Endpoint health
verified 3d ago
list_venues
get_scheduled_movies
get_schedule
3/3 passing latest checkself-healing
Endpoints
3
Updated
1mo ago

What is the Everyman Cinema API?

The Everyman Cinema API covers all 50 UK Everyman venues and exposes 3 endpoints for retrieving venue lists, daily showtimes, and upcoming film schedules. The get_schedule endpoint returns per-showtime data including booking URLs, occupancy rates, certificate, runtime, and genre tags for a specific venue and date. Use list_venues to map human-readable location names to the venue IDs that the other two endpoints require.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/dcafc810-4ed2-4f1c-9ae8-505914418810/<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/dcafc810-4ed2-4f1c-9ae8-505914418810/list_venues' \
  -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 everymancinema-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: Everyman Cinema SDK — browse venues, list scheduled movies, get showtimes."""
from parse_apis.everymancinema_com_api import EverymanCinema, ParseError

client = EverymanCinema()

# List all cinema venues across the UK
for venue in client.venues.list(limit=5):
    print(venue.id, venue.name)

# Construct a specific venue and explore its upcoming movies
bury = client.venue(id="G0210")
movie = bury.movies.list(limit=1).first()
if movie:
    print(movie.title, movie.certificate, movie.genres)
    print("Scheduled on:", movie.scheduled_days[:3])

# Get today's showtimes for the same venue
showtime = bury.schedule.list(limit=1).first()
if showtime:
    try:
        print(showtime.title, showtime.starts_at, showtime.booking_url)
    except ParseError as exc:
        print(f"Error fetching showtime: {exc}")

# Get showtimes for a specific date
for st in bury.schedule.list(date="2026-07-14", limit=5):
    print(st.title, st.starts_at, st.certificate)

print("exercised: venues.list / venue().movies.list / venue().schedule.list")
All endpoints · 3 totalmissing one? ·

Returns all Everyman Cinema venues with their IDs and names. The venue ID is required by other endpoints to retrieve schedules and showtimes. Results are a static list of all 50 UK locations.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "venues": "array of venue objects with id and name"
  },
  "sample": {
    "data": {
      "total": 50,
      "venues": [
        {
          "id": "X11DP",
          "name": "Altrincham"
        },
        {
          "id": "X0712",
          "name": "Baker Street"
        },
        {
          "id": "G0210",
          "name": "Bury St Edmunds"
        }
      ]
    },
    "status": "success"
  }
}

About the Everyman Cinema API

Venue Discovery

Start with list_venues, which returns a static list of all 50 Everyman Cinema locations across the UK. Each venue object includes an id and name. The id values (e.g. G0210 for Bury St Edmunds, X11DP for Altrincham) are required parameters for both get_schedule and get_scheduled_movies, so this endpoint is the natural entry point for any integration.

Daily Showtimes

get_schedule accepts a theater_id (required) and an optional date in YYYY-MM-DD format, defaulting to today UTC. The response includes a films array where each showtime entry carries the movie title, start time, direct booking URL, occupancy rate, certificate, runtime, genres, and any tags (e.g. special screenings). The total_showtimes integer at the top level lets you quickly check whether a venue has any screenings on a given day without iterating the array.

Upcoming Film Schedules

get_scheduled_movies takes a theater_id and returns every film currently on the schedule at that venue across all upcoming dates — no need to loop day-by-day. Each movie object includes the full list of scheduled_dates, a synopsis, poster URL, certificate, runtime, and genres. The total_movies count covers the distinct film titles in the schedule window, not individual showtime slots.

Data Shape Notes

Occupancy rates and booking URLs are per-showtime fields returned only by get_schedule, not by get_scheduled_movies. The two schedule endpoints are complementary: use get_schedule when you need slot-level detail for a single date, and get_scheduled_movies when you need a venue's full upcoming film roster without iterating over dates.

Reliability & maintenanceVerified

The Everyman Cinema API is a managed, monitored endpoint for everymancinema.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when everymancinema.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 everymancinema.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 venue page showing today's showtimes with live booking links using get_schedule
  • Display a 'coming soon' film list for a specific Everyman location using get_scheduled_movies
  • Monitor occupancy rates across venues to identify popular screenings
  • Aggregate showtimes from multiple venues to power a regional what's-on calendar
  • Extract film metadata (certificate, runtime, genres) for a structured cinema database
  • Send alerts when a new film appears on a venue's schedule by diffing get_scheduled_movies responses over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Everyman Cinema have an official developer API?+
Everyman Cinema does not publish a public developer API or API documentation on their website. This Parse API is an independent way to access their scheduling and venue data programmatically.
What does `get_schedule` return that `get_scheduled_movies` does not?+
get_schedule returns per-showtime fields including start times, direct booking URLs, and occupancy rates. get_scheduled_movies gives you each film's full set of scheduled dates, synopsis, and poster URL across the venue's upcoming window, but does not include individual slot times or occupancy data.
Does the API cover all UK Everyman Cinema locations?+
list_venues returns all 50 current Everyman UK locations. Venues that open after the last API update may not appear until the venue list is refreshed. International locations are not in scope, as Everyman operates exclusively in the UK.
Can I retrieve historical showtimes or past schedules?+
Not currently. The API returns present and future schedules: get_schedule defaults to today and accepts future dates, while get_scheduled_movies covers the upcoming booking window. You can fork this API on Parse and revise it to add a historical data endpoint if your use case requires past screening records.
Is seat-level or screen-level detail available?+
Not currently. The endpoints expose occupancy rates and booking URLs per showtime, but not individual seat maps, specific screen names, or seat category pricing. You can fork this API on Parse and revise it to add those fields if the source exposes them on the booking page.
Page content last updated . Spec covers 3 endpoints from everymancinema.com.
Related APIs in EntertainmentSee all →
landmarktheatres.com API
Find current movies, check showtimes, and browse Landmark Theatres locations nationwide with direct ticketing links. Search what's playing at any US Landmark Theatre and get all the information you need to plan your movie outing.
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.
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.
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.
uae.voxcinemas.com API
Search and discover movies playing at VOX Cinemas across the UAE, view detailed information about specific films and cinema locations, and check real-time showtimes for your preferred screenings. Get comprehensive details about each cinema including their facilities and locations to plan your movie experience.
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.
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.