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": 12,
  "results": [
    {
      "name": "Hokkaido Television Broadcasting",
      "type": ""
    },
    {
      "name": "HTB-6",
      "type": ""
    },
    {
      "name": "北海道テレビ放送",
      "type": ""
    },
    {
      "name": "HTB北海道テレビ",
      "type": ""
    },
    {
      "name": "NUMAnimation",
      "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
integer
required
Example:

12

Response

200 - application/json

Alternative names

The response is of type object.