0

I would like to know how I can get Hulu APIs to get data from Hulu for implementing the Hulu Internet TV application.

Is there any such Internet TV provider APIs available for public use?

halfer
  • 19,824
  • 17
  • 99
  • 186
Navaneeth Sen
  • 6,315
  • 11
  • 53
  • 82

2 Answers2

0

Hulu has a hidden API

curl -s www.hulu.com/api/2.0/video?id=488588 | jq .

Result

{
  "video_game": null,
  "video_game_id": null,
  "cr_countries": [],
  "programming_type": "Full Episode",
  "episode_number": 22,
  "season_number": 9,
  "copyright": "2012 NBC Studios, Inc. All Rights Reserved",
  "description": "Dwight and Jim search for a new assistant to the assistant.",
  "is_html5_enabled": false,
  "is_auth_valid": false,
}
Zombo
  • 1
  • 62
  • 391
  • 407
0

At this time Hulu does not have a public API. Netflix does though.

Zombo
  • 1
  • 62
  • 391
  • 407
Spidy
  • 39,723
  • 15
  • 65
  • 83