action bbc_get_music_popular_tracks { label: "Popular Tracks" description: "List of popular tracks for BBC Music. Filter by time, network, artist, playlist or programme.\n" provider: bbc method: GET path: "/music/popular/tracks" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } artist: { type: "string" } decomposed: { type: "string" } limit: { type: "string" } network: { type: "string" } offset: { type: "string" } programme: { type: "string" } since: { type: "string" } until: { type: "string" } } required: ["X-API-Key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }