GET
/
3
/
network
/
{network_id}
/
alternative_names
curl --request GET \
  --url https://api.themoviedb.org/3/network/{network_id}/alternative_names \
  --header 'Authorization: Bearer <token>'
{
  "id": 3268,
  "results": [
    {
      "name": "Animax",
      "type": ""
    }
  ]
}

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

A unique integer identifier assigned to a specific network in the database.

Example:

""

Response

200 - application/json

alternative names

The response is of type object.