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

Authorization
string
header
required

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

Path Parameters

network_id
string
required

This represents the network Id. Get it here

Response

200 - application/json

Alternative Names

The response is of type object.