Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Networks
Alternative Names
This endpoint retrieves the alternative names of a particular network.
GET
/
3
/
network
/
{network_id}
/
alternative_names
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
{
"id": 2,
"results": [
{
"name": "American Broadcasting Company",
"type": ""
},
{
"name": "ABC (US)",
"type": ""
},
{
"name": "ABC‐TV",
"type": ""
},
{
"name": "Disney's One Saturday Morning",
"type": "programming block"
},
{
"name": "Disney's ABC Kids",
"type": "programming block"
},
{
"name": "ABC Kids",
"type": "programming block"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Alternative Names
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
{
"id": 2,
"results": [
{
"name": "American Broadcasting Company",
"type": ""
},
{
"name": "ABC (US)",
"type": ""
},
{
"name": "ABC‐TV",
"type": ""
},
{
"name": "Disney's One Saturday Morning",
"type": "programming block"
},
{
"name": "Disney's ABC Kids",
"type": "programming block"
},
{
"name": "ABC Kids",
"type": "programming block"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.