# Tickets Cinema City — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find current movie showtimes and booking information across all Cinema City Israel locations, organized by branch so you can easily check what's playing and reserve tickets. Access movie titles, exact showtimes, and direct booking links for your preferred cinema in one place.

**Category:** Entertainment | **Website:** [tickets.cinema-city.co.il/order](https://tickets.cinema-city.co.il/order) | **Docs:** [parse.bot/marketplace/ff6db04b-5e45-4216-ace9-8ef9e5ebf62a/tickets-cinema-city-co-il-api](https://parse.bot/marketplace/ff6db04b-5e45-4216-ace9-8ef9e5ebf62a/tickets-cinema-city-co-il-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-tickets-cinema-city-co-il-api-ff6db04b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `include_synopsis` | string | No | Whether to include movie synopsis. Accepts 0 (no synopsis) or 1 (include synopsis). |
| `location_id` | string | No | 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). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tickets-cinema-city-co-il-api-ff6db04b/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"include_synopsis":"<string>","location_id":"<string>"}'
```
