Created
November 10, 2017 18:25
-
-
Save travisbell/d5f235d9c4dbed897e83a751d46efb0c 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/296099?api_key=###&language=de" | |
| * Trying 50.16.249.143... | |
| * TCP_NODELAY set | |
| * Connected to api.themoviedb.org (50.16.249.143) port 80 (#0) | |
| > GET /3/movie/296099?api_key=###&language=de 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:24:52 GMT | |
| < ETag: "8cb2a75fca468a3514e728559b962292" | |
| < Server: openresty | |
| < Vary: Accept-Encoding | |
| < X-Memc: HIT | |
| < X-Memc-Age: 14685 | |
| < X-Memc-Expires: 14115 | |
| < X-Memc-Key: 2eb2cbc06db53579767a9faa12f923f7 | |
| < Content-Length: 1802 | |
| < Connection: keep-alive | |
| < | |
| * Connection #0 to host api.themoviedb.org left intact | |
| { | |
| "adult": false, | |
| "backdrop_path": "/3pDqidHzSDHDNlrZ6isAvXNFiYy.jpg", | |
| "belongs_to_collection": { | |
| "id": 108693, | |
| "name": "Familie Griswold Filmreihe", | |
| "poster_path": "/59RxDwRsseD9P9abjKUZJUuOIUX.jpg", | |
| "backdrop_path": "/pBmhj6KkEjlzc3e7jAPkIHgGIrE.jpg" | |
| }, | |
| "budget": 31000000, | |
| "genres": [ | |
| { | |
| "id": 35, | |
| "name": "Komödie" | |
| } | |
| ], | |
| "homepage": "http://www.warnerbros.de/kino/vacation__wir_sind_die_griswolds.html", | |
| "id": 296099, | |
| "imdb_id": "tt1524930", | |
| "original_language": "en", | |
| "original_title": "Vacation", | |
| "overview": "Rusty Griswold kommt ganz nach seinem Vater. Um den Familienzusammenhalt zu stärken, möchte er gemeinsam mit seiner Frau Debbie und ihren beiden Söhnen Jack und Kevin einen spaßigen Ferienausflug unternehmen. Ziel der langen Reise ist der beliebte Familien-Freizeitpark Walley World. Dorthin hat Rusty schon 30 Jahre zuvor als Kind eine ebenso chaotische wie unvergessliche Reise mit seinen Eltern unternommen. Und auch diesmal läuft so gut wie nichts nach Plan. Während die Griswolds von einer unglücklichen Panne zur nächsten stolpern und dabei auch an einem Besuch bei Rustys Schwester Audrey und ihrem unerträglich erfolgreichen Mann Stone nicht vorbeikommen, wird es immer fraglicher, ob sie ihr Urlaubsziel tatsächlich noch erreichen werden.", | |
| "popularity": 10.091125, | |
| "poster_path": "/u5K8ZHgvtL0IhiN26cVINdxoRQt.jpg", | |
| "production_companies": [ | |
| { | |
| "name": "New Line Cinema", | |
| "id": 12 | |
| }, | |
| { | |
| "name": "BenderSpink", | |
| "id": 6363 | |
| }, | |
| { | |
| "name": "David Dobkin Productions", | |
| "id": 53060 | |
| } | |
| ], | |
| "production_countries": [ | |
| { | |
| "iso_3166_1": "US", | |
| "name": "United States of America" | |
| } | |
| ], | |
| "release_date": "2015-07-28", | |
| "revenue": 104384188, | |
| "runtime": 117, | |
| "spoken_languages": [ | |
| { | |
| "iso_639_1": "en", | |
| "name": "English" | |
| } | |
| ], | |
| "status": "Released", | |
| "tagline": "Was soll schon schief gehen?", | |
| "title": "Vacation - Wir sind die Griswolds", | |
| "video": false, | |
| "vote_average": 6.1, | |
| "vote_count": 1251 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment