Skip to main content
GET
/
3
/
network
/
{network_id}
/
alternative_names
Alternative networks
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

id
number
Example:

3268

results
object[]
Example:
[{ "name": "Animax", "type": "" }]