This page lists some sample use cases working with metadata and the endpoints in the service that support them
Examples
As a subscriber, I would like to see series images, episode images, episode number, season number
Use case
Endpoint
Fields
Comments
I would like to see series images
/series/{series_id}
data.attributes.images
The properties of all the images associated with the series are available
I would like to see episode images
/programs/{program_id}
(included episode).attributes.images
All episodes related to the program will be included following the JSON api specification. You'll need to loop through the `included` key until you match the episode (by checking the `type` and `id` fields) and then look in the `attributes.images` key
I would like to see the episode number
/programs/{program_id}
(included episode).attributes.episode_number
I would like to see the season number
/seasons/{season_id}
attributes.title
We don't limit seasons to having an integer number but rather allow a string format title. For series that have seasons which are numbered then the title will just be the season number
Extra notes
Clarifying example of an episode resourceExpand source