The following call: https://api.themoviedb.org/3/tv/424?append_to_response=season%2F0&language=en-US
gives a result where the seasons have an extra field vote_average
, which isn't documented and neither returned when calling the specific season endpoint. Is this intended or a bug?
"seasons": [
{
"air_date": "2011-07-05",
"episode_count": 12,
"id": 1238,
"name": "Specials",
"overview": "",
"poster_path": "/o2zvOndMQNZNUntDlwslfb23ifR.jpg",
"season_number": 0,
"vote_average": 0 // <----- unexpected field
},
...
]
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Justin
el 12 de julio de 2023 a las 07:15
That would be the average rating for all the seasons. If it is 0 that is because no one has voted for it here. TMDB only uses onsite ratings so it's bound to show as 0 for a lot of stuff in the vast database.
Contestado por Klemensas
el 12 de julio de 2023 a las 11:38
As per https://developer.themoviedb.org/reference/tv-season-details, a season does not have such a field
Contestado por robbie3999
el 12 de julio de 2023 a las 12:12
Ok, I see on the Trello board that this looks to be a recently added feature. I don't see any way to actually vote on a season and I also don't see a vote count so I would guess this is some kind of average of the episodes?
So I'm guessing that the doc for the TV series details didn't get updated. And the feature itself didn't get added to the TV season details endpoint.
Contestado por Travis Bell
el 13 de julio de 2023 a las 18:41
Hi @Klemensas, @robbie3999 is right, that's a recently added feature. The docs have now been updated.
Cheers.