package tmdb type movieSearchResponse struct { Results []struct { Id int `json:"id"` } `json:"results"` } type tvSearchResponse struct { Results []struct { Id int `json:"id"` } `json:"results"` } type externalIdsResponse struct { ImdbId string `json:"imdb_id"` }