curl --request GET \
--url 'https://api.themoviedb.org/3/network/{{network_id}}/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/{{network_id}}/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
19
Show child attributes
[
{
"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"
}
]