Skip to main content
GET
/
3
/
network
/
49
Get network details
curl --request GET \
  --url https://api.themoviedb.org/3/network/49 \
  --header 'Authorization: Bearer <token>'
{
  "headquarters": "New York City, New York",
  "homepage": "https://www.hbo.com",
  "id": 49,
  "logo_path": "/hizvY65SpyF3BPY2qsBZMgUOxjs.png",
  "name": "HBO",
  "origin_country": "US"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

New Request

headquarters
string
Example:

"New York City, New York"

homepage
string
Example:

"https://www.hbo.com"

id
number
Example:

49

logo_path
string
Example:

"/hizvY65SpyF3BPY2qsBZMgUOxjs.png"

name
string
Example:

"HBO"

origin_country
string
Example:

"US"

I