Marketplace
No threads yet
Live

get_ebs_broadcast_schedule

audiovisual.ec.europa.eu

Retrieves the complete European Broadcasting Service schedule for one date from https://audiovisual.ec.europa.eu, across EBS, EBS+, or both. Returns all available program, transmission, livestream, VOD, track, subtitle, status, location, and institutional metadata.

Parameters2
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_ebs_broadcast_schedule?

Retrieves the complete European Broadcasting Service schedule for one date from https://audiovisual.ec.europa.eu, across EBS, EBS+, or both. Returns all available program, transmission, livestream, VOD, track, subtitle, status, location, and institutional metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, channel and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "channels": [
    "<string>"
  ],
  "schedules": [
    {}
  ],
  "total_programs": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b17c28d7-b740-4d2c-b553-641d1763f670/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b17c28d7-b740-4d2c-b553-641d1763f670",
    "variables": {
        "date": "2026-07-24",
        "channel": "both"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="b17c28d7-b740-4d2c-b553-641d1763f670") — the "get_ebs_broadcast_schedule" function, which retrieves the complete European Broadcasting Service schedule for one date from https://audiovisual.ec.europa.eu, across EBS, EBS+, or both. Returns all available program, transmission, livestream, VOD, track, subtitle, status, location, and institutional metadata..

It takes date (str), channel (str). Return the result as structured JSON.