# Audiovisual Ec Europa — 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.

> Access live and upcoming European Broadcasting Service programs with complete schedule details, including livestream links and full program metadata for any date you choose. Plan your viewing or build applications that integrate EBS broadcast information seamlessly into your services.

**Category:** Streaming Video | **Website:** [audiovisual.ec.europa.eu/en/ebs/grid?ebs=yes&ebsplus=yes&date=20260724](https://audiovisual.ec.europa.eu/en/ebs/grid?ebs=yes&ebsplus=yes&date=20260724) | **Docs:** [parse.bot/marketplace/eb239def-0c10-4c73-9511-9ab44e9398ef/audiovisual-ec-europa-eu-api](https://parse.bot/marketplace/eb239def-0c10-4c73-9511-9ab44e9398ef/audiovisual-ec-europa-eu-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-audiovisual-ec-europa-eu-api-eb239def/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Retrieve the EBS broadcast schedule for a given date. Returns all programs across EBS and/or EBS+ channels with full metadata including titles, summaries, livestream/VOD URLs (HLS and DASH), video/audio tracks, subtitles, broadcast status, locations, and institutional affiliations. Each program contains one or more transmissions (segments) with individual media assets. Results are single-page (one date per request).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel` | string | No | Which channel(s) to include in results. |
| `date` | string | No | Date in YYYYMMDD format (e.g. 20260728). Defaults to today (UTC) when omitted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-audiovisual-ec-europa-eu-api-eb239def/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel":"<string>","date":"<string>"}'
```
