Is there a way to discover Season Regulars via the API? For the life of me I can't find it.
For example, looking at Fargo s05e01 on the web, there's a list of 10 Season Regulars
on the left (on Desktop).
When I look at https://api.themoviedb.org/3/tv/60622/season/5
, I don't see any such field:
{
"_id": "64de2be0b77d4b1141f8c5fb",
"air_date": "2023-11-21",
"episodes": [/* cut for brevity */],
"name": "Year Five",
"overview": "After an unexpected series of events lands Dorothy \"Dot\" Lyon in hot water with the authorities, this seemingly typical Midwestern housewife is suddenly plunged back into a life she thought she had left behind.",
"id": 353058,
"poster_path": "/6U9CPeD8obHzweikFhiLhpc7YBT.jpg",
"season_number": 5,
"vote_average": 8.3
}
Is there somewhere else I can find this data?
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Travis Bell
on January 6, 2024 at 2:57 PM
The season
/credits
end point would be the one you're looking for.Reply by caseyliss
on January 6, 2024 at 4:31 PM
🤦♂️ shoot, duh. Thank you so much! I was using
aggregate_credits
and somehow completely missed that.Thanks again, Travis. Doubly so for getting back to me on a weekend!