cURL
curl --request GET \ --url 'https://api.themoviedb.org/3/network/{{network_id}}' \ --header 'Authorization: Bearer <token>'
{ "headquarters": "Minato, Tokyo", "homepage": "https://www.fujitv.co.jp", "id": 1, "logo_path": "/4x4GsmRmSLLL0RVNKsoqAVH43tz.png", "name": "Fuji TV", "origin_country": "JP" }
This endpoint lets you get all the details about a specific TV network identified by its network_id on TMDb, like its name, headquarters, and logo.
network_id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Details Example
"Minato, Tokyo"
"https://www.fujitv.co.jp"
1
"/4x4GsmRmSLLL0RVNKsoqAVH43tz.png"
"Fuji TV"
"JP"