tickets.cinema-city.co.il APItickets.cinema-city.co.il ↗
Get real-time Cinema City Israel movie schedules, showtimes, and booking links across all branches via a single API endpoint.
curl -X GET 'https://api.parse.bot/scraper/222a3403-419e-4566-b9fe-f848e9a705ff/get_schedule' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the full cinema schedule grouped by branch name. Returns an object where each key is a branch name (e.g. סינמה סיטי ראשל"צ, סינמה סיטי נתניה) and each value is an array of movies with their showtimes and booking links. When location_id is 0, all branches are returned.
| Param | Type | Description |
|---|---|---|
| location_id | string | Numeric location ID to filter by a specific branch. Use 0 to retrieve all branches. Known IDs include 1173 (Rishon LeZion), 1176 (Netanya), 1178 (Beer Sheva), 1170 (Glilot), 1181 (Ashdod). |
| include_synopsis | string | Whether to include movie synopsis. Accepts 0 (no synopsis) or 1 (include synopsis). |
{
"type": "object",
"fields": {
"branch_name (dynamic key)": "object with array of movie objects, each containing movie_title (string), showtimes (array of datetime strings in YYYY-MM-DD HH:MM format), and booking_links (array of URLs)"
},
"sample": {
"סינמה סיטי נתניה": [
{
"showtimes": [
"2026-06-14 22:20",
"2026-06-15 22:00"
],
"movie_title": "הישרדות ללא תקווה",
"booking_links": [
"https://tickets.cinema-city.co.il/order/809760",
"https://tickets.cinema-city.co.il/order/809767"
]
},
{
"showtimes": [
"2026-06-14 22:30",
"2026-06-14 22:40"
],
"movie_title": "אובססיה",
"booking_links": [
"https://tickets.cinema-city.co.il/order/809762",
"https://tickets.cinema-city.co.il/order/809750"
]
}
]
}
}About the tickets.cinema-city.co.il API
The Cinema City Israel API exposes 1 endpoint — get_schedule — that returns the full movie schedule across all Cinema City Israel branches, covering movie titles, datetime-formatted showtimes, and direct booking links. Results are grouped by branch name (Hebrew keys such as סינמה סיטי ראשל"צ), making it straightforward to display or compare showtime data per location. The response includes up to 5 response fields per movie object.
What get_schedule Returns
The get_schedule endpoint returns an object where each key is a branch name in Hebrew (e.g. סינמה סיטי נתניה) and the value is an array of movie objects. Each movie object includes movie_title (string), showtimes (array of datetime strings in YYYY-MM-DD HH:MM format), and a booking link pointing directly to the Cinema City ticketing flow. This structure lets you iterate over branches or drill into a specific cinema with minimal post-processing.
Filtering by Location
The location_id parameter accepts a numeric branch ID as a string. Passing 0 returns all branches in a single response. Known IDs include 1173 for specific branches. When targeting a single branch, the response object will contain only that branch's key and movie array, reducing payload size if you're building a branch-specific view.
Synopsis Support
An optional include_synopsis parameter (accepts "0" or "1") controls whether a text synopsis is appended to each movie object. This is useful when building a full listing page but can be omitted to keep responses lighter when you only need showtimes and booking links.
Coverage and Freshness
The schedule reflects what is currently listed on the Cinema City Israel ticketing site at tickets.cinema-city.co.il. Data is branch-scoped to Israeli Cinema City locations and is not shared with or aware of Cinema City branches in other countries. Showtimes are in local Israeli time.
- Display today's showtimes for a specific Cinema City Israel branch in a mobile app using location_id filtering
- Aggregate booking links across all branches to compare availability for a specific movie title
- Build a Hebrew-language cinema guide that lists all currently screening movies with their exact start times
- Send automated alerts when new showtimes are added for a particular movie title at a selected branch
- Populate a weekly cinema schedule widget with datetime-stamped showtimes from the showtimes array
- Render movie detail pages with synopsis text by enabling the include_synopsis parameter
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.