curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
{
"id": 19,
"results": [
{
"name": "Fox Broadcasting Company",
"type": ""
},
{
"name": "Fox",
"type": ""
},
{
"name": "Fox Kids",
"type": "programming block"
},
{
"name": "4Kids TV",
"type": "programming block"
},
{
"name": "4K!DS TV",
"type": ""
},
{
"name": "FoxBox",
"type": "programming block"
}
]
}
This endpoint allows you to get alternative names of the networks.
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/alternative_names \
--header 'Authorization: Bearer <token>'
{
"id": 19,
"results": [
{
"name": "Fox Broadcasting Company",
"type": ""
},
{
"name": "Fox",
"type": ""
},
{
"name": "Fox Kids",
"type": "programming block"
},
{
"name": "4Kids TV",
"type": "programming block"
},
{
"name": "4K!DS TV",
"type": ""
},
{
"name": "FoxBox",
"type": "programming block"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
fetch alternative names
The response is of type object
.