GET
/
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": 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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

network_id
string
required

Response

200 - application/json

fetch alternative names

The response is of type object.