Created
November 10, 2017 18:27
-
-
Save travisbell/5940eaad5be22e602855cb3ffe568314 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| travisbell$ curl -v "http://api.themoviedb.org/3/movie/138832?api_key=###&language=pt" | |
| * Trying 23.21.43.191... | |
| * TCP_NODELAY set | |
| * Connected to api.themoviedb.org (23.21.43.191) port 80 (#0) | |
| > GET /3/movie/138832?api_key=###&language=pt 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=28800 | |
| < Content-Type: application/json;charset=utf-8 | |
| < Date: Fri, 10 Nov 2017 18:26:41 GMT | |
| < ETag: "bf5bbe689fc67cdd27318e5f4c0de259" | |
| < Server: openresty | |
| < Vary: Accept-Encoding | |
| < X-Memc: HIT | |
| < X-Memc-Age: 4047 | |
| < X-Memc-Expires: 24753 | |
| < X-Memc-Key: 71cac7f3303bb3d0e4ee67d3c50c3fb3 | |
| < Content-Length: 1817 | |
| < Connection: keep-alive | |
| < | |
| * Connection #0 to host api.themoviedb.org left intact | |
| { | |
| "adult": false, | |
| "backdrop_path": "/zq1jEtJCszbQPFMt65QEsjIRTft.jpg", | |
| "belongs_to_collection": { | |
| "id": 297923, | |
| "name": "We're the Millers Collection", | |
| "poster_path": "/8i2kMT4VfYaK5wH1Q8HyxmdHtFm.jpg", | |
| "backdrop_path": "/1JXiwPCJXIhubAhEuvyBh5UE6rH.jpg" | |
| }, | |
| "budget": 37000000, | |
| "genres": [ | |
| { | |
| "id": 35, | |
| "name": "Comédia" | |
| }, | |
| { | |
| "id": 80, | |
| "name": "Crime" | |
| } | |
| ], | |
| "homepage": "", | |
| "id": 138832, | |
| "imdb_id": "tt1723121", | |
| "original_language": "en", | |
| "original_title": "We're the Millers", | |
| "overview": "Após ser roubado, o traficante de meia tigela David Clark (Jason Sudeikis) é obrigado por seu chefe, Brad Gurdlinger (Ed Helms), a viajar até o México para fechar uma negociação envolvendo um grande carregamento de maconha. Para tanto David precisa formar uma família de mentira e com isso convida a stripper Rose O'Reilly (Jennifer Aniston) para ser sua falsa esposa. A delinquente Casey (Emma Roberts) e o virgem Kenny (Will Poulter) logo entram no plano e juntos eles formam os Miller, que aparentemente estariam fazendo uma pacata viagem rumo ao México a bordo do trailer da família. Entretanto, ao longo do caminho os antigos hábitos voltam à tona e nem tudo sai como o planejado.", | |
| "popularity": 10.426229, | |
| "poster_path": "/zfoxdQD3VODvj3sRvVHPii9pSNf.jpg", | |
| "production_companies": [ | |
| { | |
| "name": "New Line Cinema", | |
| "id": 12 | |
| }, | |
| { | |
| "name": "BenderSpink", | |
| "id": 6363 | |
| }, | |
| { | |
| "name": "Heyday Films", | |
| "id": 7364 | |
| }, | |
| { | |
| "name": "Newman/Tooley Films", | |
| "id": 16791 | |
| }, | |
| { | |
| "name": "Vincent Newman Entertainment", | |
| "id": 17929 | |
| }, | |
| { | |
| "name": "Slap Happy Productions (II)", | |
| "id": 31073 | |
| } | |
| ], | |
| "production_countries": [ | |
| { | |
| "iso_3166_1": "US", | |
| "name": "United States of America" | |
| } | |
| ], | |
| "release_date": "2013-08-07", | |
| "revenue": 269994119, | |
| "runtime": 110, | |
| "spoken_languages": [ | |
| { | |
| "iso_639_1": "en", | |
| "name": "English" | |
| } | |
| ], | |
| "status": "Released", | |
| "tagline": "Uma viagem muito louca", | |
| "title": "Trip de Família", | |
| "video": false, | |
| "vote_average": 6.8, | |
| "vote_count": 3161 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment