House of the dragon credits are missing all the cast in the API, however the cast is showing on the tmdb frontend, not sure what's happening
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/94997/credits?language=en-US' \
--header 'Authorization: Bearer ey...' \
--header 'accept: application/json'
Response:
{
"cast": [],
"crew": [
{
"adult": false,
"gender": 2,
"id": 1914415,
"known_for_department": "Crew",
"name": "Paul Biddiss",
"original_name": "Paul Biddiss",
"popularity": 4.91,
"profile_path": null,
"credit_id": "65d5f32c6097500185237cde",
"department": "Crew",
"job": "Military Consultant"
},
...
],
"id": 94997
}
website: https://www.themoviedb.org/tv/94997-house-of-the-dragon
Не можеш да нађеш филм или серију? Пријави се да додаш.
Желите ли да оцените или додате ову ставку у листу?
Нисте члан?
Одговор од Travis Bell
дана 22. мај 2024. у 2:45 PM
You’ll want to use the aggregate credits method. The plain credits method only returns the latest season which in this case hasn’t been filled out yet.
Одговор од superboy97
дана 22. мај 2024. у 2:47 PM
If you want all the credits, like on the frontend, you should use aggregate_credits.
With credits, you only get the credits of the last season.
Одговор од joaosardinha
дана 22. мај 2024. у 3:20 PM
Ahh yeah that's what I need, thanks both,
Just noticed the credits page does have a note about this