Hello,
I have noticed that when querying the season details endpoint for Season 8 of Dexter, one of the items in the response does not follow the format specified in the API documentation.
Specifically, the sixth item within the guest_stars
list of the first episode is missing the adult
, gender
, id
, known_for_department
, name
, original_name
, popularity
and profile_path
fields and has the episode_count
field which is not part of the specification. The rest of the items in the list and those for all the other episodes do come with the expected format.
Example from current response:
{
"episode_count": 1,
"person_id": "55137b689251412be4000639",
"character": "Receptionist",
"credit_id": "56bdd9349251417347003435",
"order": 541
}
Expected format:
{
"character": ...,
"credit_id": ...,
"order": ...,
"adult": ...,
"gender": ...,
"id": ...,
"known_for_department": ...,
"name": ...,
"original_name": ...,
"popularity": ...,
"profile_path": ...
}
Steps to reproduce:
episodes[0].guest_stars[5]
field in the responseCan'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 Shei
on August 13, 2025 at 2:32 PM
I readded this specific guest star earlier today and it seems to have fixed the inconsistency. Now it returns the correct item.