Skip to content

Instantly share code, notes, and snippets.

@travisbell
Created November 13, 2017 16:09
Show Gist options
  • Save travisbell/49ea8c8e5a71f64f43032a346ab8b72f to your computer and use it in GitHub Desktop.
Save travisbell/49ea8c8e5a71f64f43032a346ab8b72f to your computer and use it in GitHub Desktop.
travisbell$ curl -v "http://api.themoviedb.org/3/search/movie?query=Drunken+Master+II&api_key=###"
* Trying 54.243.67.237...
* TCP_NODELAY set
* Connected to api.themoviedb.org (54.243.67.237) port 80 (#0)
> GET /3/search/movie?query=Drunken+Master+II&api_key=### HTTP/1.1
> Host: api.themoviedb.org
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Access-Control-Allow-Origin: *
< Access-Control-Expose-Headers: ETag, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Retry-After
< Cache-Control: public, max-age=21600
< Content-Type: application/json;charset=utf-8
< Date: Mon, 13 Nov 2017 16:08:36 GMT
< ETag: ccbd8ca962b80445df1f7f38c57759f0
< Server: openresty
< Vary: Accept-Encoding
< Content-Length: 2264
< Connection: keep-alive
<
* Connection #0 to host api.themoviedb.org left intact
{
"page": 1,
"total_results": 3,
"total_pages": 1,
"results": [
{
"vote_count": 253,
"id": 12207,
"video": false,
"vote_average": 7.2,
"title": "The Legend of Drunken Master",
"popularity": 6.170997,
"poster_path": "/wjKDenxuyUuLb3MItcCsi7w2l8c.jpg",
"original_language": "cn",
"original_title": "醉拳二",
"genre_ids": [
28,
35
],
"backdrop_path": "/9ajYP2DlI3loIT0vVJPWerLvNAt.jpg",
"adult": false,
"overview": "Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.",
"release_date": "1994-02-03"
},
{
"vote_count": 8,
"id": 49642,
"video": false,
"vote_average": 5.9,
"title": "Drunken Master Part II - Dance of the Drunk Mantis",
"popularity": 2.415622,
"poster_path": "/7t5RfG2XkqOJou60mS7mRgDJssI.jpg",
"original_language": "cn",
"original_title": "Nan bei zui quan",
"genre_ids": [
28,
35
],
"backdrop_path": "/oIt3TosaD9Wa3MhqKosQloGNFW0.jpg",
"adult": false,
"overview": "A year after training young Jackie Chan in the Drunken Fist, Sam the Seed discovers he has a son, Foggy. He tries to train Foggy but to no avail. Foggy is then trained in Drunken Fist from his uncle as he must face his father's rival, Rubber Legs, another Drunken Fist master who combines it with Mantis Fist to create a deadly style.",
"release_date": "1979-06-26"
},
{
"vote_count": 4,
"id": 66018,
"video": false,
"vote_average": 4.5,
"title": "Drunken Master III",
"popularity": 1.221903,
"poster_path": "/r0w39pGkO1A5vZoDf6hh533WAox.jpg",
"original_language": "cn",
"original_title": "醉拳III",
"genre_ids": [
28,
53,
10769
],
"backdrop_path": "/76L3UEddT59gxuzrqT5L9reDCLC.jpg",
"adult": false,
"overview": "Set around the turn of the century in China, the White Lotus Society plots to put the next Emperor on the throne. To do this they want their protege to marry the Princess Sun Yu who possesses an important jade ring. They dispatch Yueng Kwan to fetch her. However, Yueng Kwan is a patriot, working for the revolutionary forces of Sun Yat Sen. He abducts Sun Yu and finds refuge with the father of the future hero Wong Fei Hung.",
"release_date": "1994-07-02"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment