ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
NETWORKS
Alternative Names
This endpoint gets the alternative names of a network.
GET
/
3
/
network
/
{network_id}
/
alternative_names
Copy
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1,
"results": [
{
"name": "Fuji Television",
"type": ""
},
{
"name": "Fuji Television Network, Inc.",
"type": ""
},
{
"name": "フジテレビジョン",
"type": ""
},
{
"name": "Fuji Terebijon",
"type": "Hepburn romanization"
},
{
"name": "フジテレビ",
"type": ""
},
{
"name": "富士電視台",
"type": ""
},
{
"name": "フジテレビ+Ultra",
"type": "Anime programing block"
},
{
"name": "フジテレビ noitaminA",
"type": "Anime programing block"
},
{
"name": "FSN",
"type": "parent network"
},
{
"name": "フジネットワーク",
"type": ""
},
{
"name": "Fuji Network",
"type": ""
},
{
"name": "Fuji Network System",
"type": ""
},
{
"name": "B8station",
"type": "programming block for Bilibili-produced anime"
},
{
"name": "ビーハチステーション",
"type": "programming block for Bilibili-produced anime"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Alternative Names Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1,
"results": [
{
"name": "Fuji Television",
"type": ""
},
{
"name": "Fuji Television Network, Inc.",
"type": ""
},
{
"name": "フジテレビジョン",
"type": ""
},
{
"name": "Fuji Terebijon",
"type": "Hepburn romanization"
},
{
"name": "フジテレビ",
"type": ""
},
{
"name": "富士電視台",
"type": ""
},
{
"name": "フジテレビ+Ultra",
"type": "Anime programing block"
},
{
"name": "フジテレビ noitaminA",
"type": "Anime programing block"
},
{
"name": "FSN",
"type": "parent network"
},
{
"name": "フジネットワーク",
"type": ""
},
{
"name": "Fuji Network",
"type": ""
},
{
"name": "Fuji Network System",
"type": ""
},
{
"name": "B8station",
"type": "programming block for Bilibili-produced anime"
},
{
"name": "ビーハチステーション",
"type": "programming block for Bilibili-produced anime"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.