tomato_power 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +9 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +57 -0
  7. data/Rakefile +1 -0
  8. data/lib/tomato_power/api/api.rb +97 -0
  9. data/lib/tomato_power/api/tomato_methods.rb +82 -0
  10. data/lib/tomato_power/client.rb +35 -0
  11. data/lib/tomato_power/helpers/helpers.rb +12 -0
  12. data/lib/tomato_power/helpers/parsers.rb +28 -0
  13. data/lib/tomato_power/movie/actor.rb +12 -0
  14. data/lib/tomato_power/movie/clip.rb +10 -0
  15. data/lib/tomato_power/movie/movie.rb +56 -0
  16. data/lib/tomato_power/movie/review.rb +15 -0
  17. data/lib/tomato_power/version.rb +3 -0
  18. data/lib/tomato_power.rb +22 -0
  19. data/spec/spec_helper.rb +5 -0
  20. data/spec/support/sample_data/no_results +1 -0
  21. data/spec/support/sample_data/sample_actor +5 -0
  22. data/spec/support/sample_data/sample_actors +186 -0
  23. data/spec/support/sample_data/sample_alias +64 -0
  24. data/spec/support/sample_data/sample_clip +6 -0
  25. data/spec/support/sample_data/sample_clips +147 -0
  26. data/spec/support/sample_data/sample_movie +1 -0
  27. data/spec/support/sample_data/sample_movies +46 -0
  28. data/spec/support/sample_data/sample_review +8 -0
  29. data/spec/support/sample_data/sample_reviews +191 -0
  30. data/spec/support/vcr/TomatoPower_API/API_Methods/valid_methods/should_create_methods.yml +598 -0
  31. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_consider_0_options_valid.yml +306 -0
  32. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_not_raise_error.yml +101 -0
  33. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_return_a_list_of_movie_objects.yml +101 -0
  34. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_url_encode_search_string_before_sending.yml +102 -0
  35. data/spec/support/vcr/TomatoPower_API/List_request/should_return_a_list_of_movie_objects.yml +101 -0
  36. data/spec/support/vcr/TomatoPower_API/List_request/should_url_encode_search_string_before_sending.yml +102 -0
  37. data/spec/support/vcr/TomatoPower_API/Movie_request/cast/should_return_cast_of_movie.yml +356 -0
  38. data/spec/support/vcr/TomatoPower_API/Movie_request/clips/should_return_clips_of_movie.yml +638 -0
  39. data/spec/support/vcr/TomatoPower_API/Movie_request/no_results/should_return_error_string_if_no_results_are_found.yml +49 -0
  40. data/spec/support/vcr/TomatoPower_API/Movie_request/reviews/should_return_reviews.yml +271 -0
  41. data/spec/support/vcr/TomatoPower_API/Movie_request/should_return_single_movie.yml +161 -0
  42. data/spec/support/vcr/TomatoPower_API/Movie_request/similar/should_return_similar_movies.yml +121 -0
  43. data/spec/support/vcr/TomatoPower_Client/box_office_movies/should_return_list_of_movies.yml +396 -0
  44. data/spec/support/vcr/TomatoPower_Client/current_release_dvds/should_return_list_of_movies.yml +427 -0
  45. data/spec/support/vcr/TomatoPower_Client/in_theaters_movies/should_return_list_of_movies.yml +380 -0
  46. data/spec/support/vcr/TomatoPower_Client/new_release_dvds/should_return_list_of_movies.yml +392 -0
  47. data/spec/support/vcr/TomatoPower_Client/opening_movies/should_return_list_of_movies.yml +213 -0
  48. data/spec/support/vcr/TomatoPower_Client/search_by_id/should_return_list_of_movies_by_id.yml +88 -0
  49. data/spec/support/vcr/TomatoPower_Client/search_by_title/should_return_list_of_movies_by_title.yml +89 -0
  50. data/spec/support/vcr/TomatoPower_Client/top_rentals/should_return_list_of_movies.yml +409 -0
  51. data/spec/support/vcr/TomatoPower_Client/upcoming_dvds/should_return_list_of_movies.yml +359 -0
  52. data/spec/support/vcr/TomatoPower_Client/upcoming_movies/should_return_list_of_movies.yml +341 -0
  53. data/spec/support/vcr/TomatoPower_Movie/clips/should_return_clips.yml +250 -0
  54. data/spec/support/vcr/TomatoPower_Movie/full_cast/should_return_cast.yml +279 -0
  55. data/spec/support/vcr/TomatoPower_Movie/reviews/should_return_reviews.yml +205 -0
  56. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similar_movies.yml +231 -0
  57. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similars.yml +81 -0
  58. data/spec/support/vcr.rb +13 -0
  59. data/spec/unit_specs/actor_spec.rb +16 -0
  60. data/spec/unit_specs/api_spec.rb +126 -0
  61. data/spec/unit_specs/client_spec.rb +73 -0
  62. data/spec/unit_specs/clip_spec.rb +14 -0
  63. data/spec/unit_specs/helpers.rb +50 -0
  64. data/spec/unit_specs/helpers_spec.rb +4 -0
  65. data/spec/unit_specs/movie_spec.rb +75 -0
  66. data/spec/unit_specs/parsers_spec.rb +55 -0
  67. data/spec/unit_specs/review_spec.rb +17 -0
  68. data/spec/unit_specs/tomato_power_spec.rb +6 -0
  69. data/tomato_power.gemspec +29 -0
  70. metadata +295 -0
@@ -0,0 +1,396 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/movies/box_office.json?apikey=<API_KEY>&country=us&limit=20
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Wed, 20 Feb 2013 15:31:49 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=243243177E125ED248EC80721FB3E49B.localhost; Path=/
35
+ - ServerID=1336; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1d-15.mashery.com
40
+ Transfer-Encoding:
41
+ - chunked
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! '
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ {"movies":[{"id":"771257607","title":"A Good Day To Die Hard","year":2013,"mpaa_rating":"R","runtime":110,"critics_consensus":"A
78
+ Good Day to Die Hard is the weakest entry in a storied franchise, and not
79
+ even Bruce Willis'' smirking demeanor can enliven a cliched, uninspired script.","release_dates":{"theater":"2013-02-14"},"ratings":{"critics_rating":"Rotten","critics_score":16,"audience_rating":"Upright","audience_score":82},"synopsis":"John
80
+ McClane (Bruce Willis) heads to Russia in this fifth installment of the Die
81
+ Hard film series. Skip Woods (The A-Team) provides the script, with Max Payne''s
82
+ John Moore directing. ~ Jeremy Wheeler, Rovi","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/83/11168351_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/83/11168351_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/83/11168351_det.jpg","original":"http://content9.flixster.com/movie/11/16/83/11168351_ori.jpg"},"abridged_cast":[{"name":"Bruce
83
+ Willis","id":"162652509","characters":["John McClane"]},{"name":"Jai Courtney","id":"771383833","characters":["Jack
84
+ McClane"]},{"name":"Sebastian Koch","id":"364644078","characters":["Komarov"]},{"name":"Mary
85
+ Elizabeth Winstead","id":"341817661","characters":["Lucy"]},{"name":"Yulia
86
+ Snigir","id":"771404276","characters":["Irina"]}],"alternate_ids":{"imdb":"1606378"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257607.json","alternate":"http://www.rottentomatoes.com/m/a_good_day_to_die_hard/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257607/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257607/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257607/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257607/similar.json"}},{"id":"771270981","title":"Identity
87
+ Thief","year":2013,"mpaa_rating":"R","runtime":107,"critics_consensus":"Identity
88
+ Thief''s few laughs are attributable to Melissa McCarthy and Jason Bateman,
89
+ who labor mightily to create a framework for the movie''s undisciplined plotline.","release_dates":{"theater":"2013-02-08"},"ratings":{"critics_rating":"Rotten","critics_score":24,"audience_rating":"Upright","audience_score":74},"synopsis":"Unlimited
90
+ funds have allowed Diana (McCarthy) to live it up on the outskirts of Miami,
91
+ where the queen of retail buys whatever strikes her fancy. There''s only one
92
+ glitch: The ID she''s using to finance these sprees reads \"Sandy Bigelow
93
+ Patterson\"....and it belongs to an accounts rep (Bateman) who lives halfway
94
+ across the U.S. With only one week to hunt down the con artist before his
95
+ world implodes, the real Sandy Bigelow Patterson heads south to confront the
96
+ woman with an all-access pass to his life. And as he attempts to bribe, coax
97
+ and wrangle her the 2,000 miles to Denver, one easy target will discover just
98
+ how tough it is to get your name back. -- (C) Official Site","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/77/11167739_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/77/11167739_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/77/11167739_det.jpg","original":"http://content9.flixster.com/movie/11/16/77/11167739_ori.jpg"},"abridged_cast":[{"name":"Jason
99
+ Bateman","id":"326298973","characters":["Sandy Patterson"]},{"name":"Genesis
100
+ Rodriguez","id":"770770383","characters":["Marisol"]},{"name":"John Cho","id":"300371277","characters":["Daniel
101
+ Casey"]},{"name":"Melissa McCarthy","id":"528361348","characters":["Diana"]},{"name":"Jon
102
+ Favreau","id":"162655175","characters":["Harold Cornish"]}],"alternate_ids":{"imdb":"2024432"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270981.json","alternate":"http://www.rottentomatoes.com/m/identity_thief/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270981/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270981/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270981/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771270981/similar.json"}},{"id":"770893918","title":"Safe
103
+ Haven","year":2013,"mpaa_rating":"PG-13","runtime":115,"critics_consensus":"Schmaltzy,
104
+ predictable, and melodramatic, Safe Haven also suffers from a ludicrous plot
105
+ twist, making for a particularly ignominious Nicholas Sparks adaptation.","release_dates":{"theater":"2013-02-14"},"ratings":{"critics_rating":"Rotten","critics_score":12,"audience_rating":"Upright","audience_score":71},"synopsis":"An
106
+ affirming and suspenseful story about a young woman''s struggle to love again,
107
+ Safe Haven is based on the novel from Nicholas Sparks, the best-selling author
108
+ behind the hit films The Notebook and Dear John. When a mysterious young woman
109
+ arrives in a small North Carolina town, her reluctance to join the tight knit
110
+ community raises questions about her past. Slowly, she begins putting down
111
+ roots, and gains the courage to start a relationship with Alex, a widowed
112
+ store owner with two young children. But dark secrets intrude on her new life
113
+ with such terror that she is forced to rediscover the meaning of sacrifice
114
+ and rely on the power of love in this deeply moving romantic thriller.","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/77/11167789_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/77/11167789_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/77/11167789_det.jpg","original":"http://content7.flixster.com/movie/11/16/77/11167789_ori.jpg"},"abridged_cast":[{"name":"Josh
115
+ Duhamel","id":"162669304","characters":["Alex","Alex Wheatley"]},{"name":"Julianne
116
+ Hough","id":"770848071","characters":["Katie","Katie Feldman"]},{"name":"Cobie
117
+ Smulders","id":"364659249","characters":["Jo"]},{"name":"David Lyons","id":"770679382","characters":["Kevin
118
+ Tierney","Tierney"]},{"name":"Noah Lomax","id":"771104131","characters":["Josh"]}],"alternate_ids":{"imdb":"1702439"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770893918.json","alternate":"http://www.rottentomatoes.com/m/safe_haven/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/770893918/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/770893918/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/770893918/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/770893918/similar.json"}},{"id":"771267600","title":"Escape
119
+ From Planet Earth 3D","year":2013,"mpaa_rating":"PG","runtime":89,"release_dates":{"theater":"2013-02-15"},"ratings":{"critics_rating":"Rotten","critics_score":29,"audience_rating":"Upright","audience_score":74},"synopsis":"The
120
+ 3D animated family comedy catapults moviegoers to planet Baab where admired
121
+ astronaut Scorch Supernova (Brendan Fraser) is a national hero to the blue
122
+ alien population. A master of daring rescues, Scorch pulls off astonishing
123
+ feats with the quiet aid of his nerdy, by-the-rules brother, Gary (Rob Corddry),
124
+ head of mission control at BASA. When BASA''s no-nonsense chief Lena (Jessica
125
+ Alba) informs the brothers of an SOS from a notoriously dangerous planet,
126
+ Scorch rejects Gary''s warnings and bounds off for yet another exciting mission.
127
+ But when Scorch finds himself caught in a fiendish trap set by the evil Shanker
128
+ (William Shatner) it''s up to scrawny, risk-adverse Gary to do the real rescuing.
129
+ As the interplanetary stakes rise to new heights, Gary is left to save his
130
+ brother, his planet, his beloved wife Kira (Sarah Jessica Parker) and their
131
+ adventure hungry son Kip. (c) Weinstein","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/82/11168216_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/82/11168216_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/82/11168216_det.jpg","original":"http://content6.flixster.com/movie/11/16/82/11168216_ori.jpg"},"abridged_cast":[{"name":"Brendan
132
+ Fraser","id":"162662763","characters":["Scorch Supernova"]},{"name":"Rob Corddry","id":"312208850","characters":["Gary","Gary
133
+ Supernova"]},{"name":"Ricky Gervais","id":"378620549","characters":["Mr. James
134
+ Bing"]},{"name":"Jonathan Morgan Heit","id":"770825935","characters":["Kip
135
+ Supernova"]},{"name":"Jessica Alba","id":"162652782","characters":["Lena","Lena
136
+ Thackleman"]}],"alternate_ids":{"imdb":"0765446"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267600.json","alternate":"http://www.rottentomatoes.com/m/escape_from_planet_earth_3d/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267600/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267600/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267600/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267600/similar.json"}},{"id":"771238285","title":"Warm
137
+ Bodies","year":2013,"mpaa_rating":"PG-13","runtime":97,"critics_consensus":"Warm
138
+ Bodies offers a sweet, well-acted spin on a genre that all too often lives
139
+ down to its brain-dead protagonists.","release_dates":{"theater":"2013-02-01"},"ratings":{"critics_rating":"Certified
140
+ Fresh","critics_score":78,"audience_rating":"Upright","audience_score":82},"synopsis":"A
141
+ funny new twist on a classic love story, WARM BODIES is a poignant tale about
142
+ the power of human connection. After a zombie epidemic, R (a highly unusual
143
+ zombie) encounters Julie (a human survivor), and rescues her from a zombie
144
+ attack. Julie sees that R is different from the other zombies, and as the
145
+ two form a special relationship in their struggle for survival, R becomes
146
+ increasingly more human - setting off an exciting, romantic, and often comical
147
+ chain of events that begins to transform the other zombies and maybe even
148
+ the whole lifeless world. (c) Summit","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/91/11169191_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/91/11169191_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/91/11169191_det.jpg","original":"http://content9.flixster.com/movie/11/16/91/11169191_ori.jpg"},"abridged_cast":[{"name":"Nicholas
149
+ Hoult","id":"162654938","characters":["R"]},{"name":"Teresa Palmer","id":"347990464","characters":["Julie"]},{"name":"Rob
150
+ Corddry","id":"312208850","characters":["M"]},{"name":"John Malkovich","id":"162655610","characters":["General
151
+ Grigio","Grigio"]},{"name":"Dave Franco","id":"770703179","characters":["Perry","Perry
152
+ Kelvin"]}],"alternate_ids":{"imdb":"1588173"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771238285.json","alternate":"http://www.rottentomatoes.com/m/warm_bodies/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771238285/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771238285/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771238285/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771238285/similar.json"}},{"id":"771269779","title":"Beautiful
153
+ Creatures","year":2013,"mpaa_rating":"PG-13","runtime":118,"critics_consensus":"Charming
154
+ romantic leads and esteemed supporting cast aside, Beautiful Creatures is
155
+ a plodding YA novel adaptation that feels watered down for the Twilight set.","release_dates":{"theater":"2013-02-14"},"ratings":{"critics_rating":"Rotten","critics_score":45,"audience_rating":"Upright","audience_score":74},"synopsis":"A
156
+ supernatural love story set in the South, \"Beautiful Creatures\" tells the
157
+ tale of two star-crossed lovers: Ethan (Alden Ehrenreich), a young man longing
158
+ to escape his small town, and Lena (Alice Englert), a mysterious new girl.
159
+ Together, they uncover dark secrets about their respective families, their
160
+ history and their town. (c) WB","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/77/11167744_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/77/11167744_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/77/11167744_det.jpg","original":"http://content6.flixster.com/movie/11/16/77/11167744_ori.jpg"},"abridged_cast":[{"name":"Alden
161
+ Ehrenreich","id":"770833120","characters":["Ethan Wate"]},{"name":"Alice Englert","id":"770904089","characters":["Lena
162
+ Duchannes"]},{"name":"Jeremy Irons","id":"162652244","characters":["Macon
163
+ Ravenwood"]},{"name":"Viola Davis","id":"162655119","characters":["Amma"]},{"name":"Emmy
164
+ Rossum","id":"162659103","characters":["Ridley"]}],"alternate_ids":{"imdb":"1559547"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269779.json","alternate":"http://www.rottentomatoes.com/m/beautiful_creatures_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269779/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269779/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269779/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269779/similar.json"}},{"id":"771305509","title":"Side
165
+ Effects","year":2013,"mpaa_rating":"R","runtime":106,"critics_consensus":"A
166
+ smart, clever thriller with plenty of disquieting twists, Side Effects is
167
+ yet another assured effort from director Steven Soderbergh.","release_dates":{"theater":"2013-02-08"},"ratings":{"critics_rating":"Certified
168
+ Fresh","critics_score":85,"audience_rating":"Upright","audience_score":70},"synopsis":"SIDE
169
+ EFFECTS is a provocative thriller about Emily and Martin (Rooney Mara and
170
+ Channing Tatum), a successful New York couple whose world unravels when a
171
+ new drug prescribed by Emily''s psychiatrist (Jude Law) - intended to treat
172
+ anxiety - has unexpected side effects. (c) Official FB","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/82/11168221_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/82/11168221_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/82/11168221_det.jpg","original":"http://content7.flixster.com/movie/11/16/82/11168221_ori.jpg"},"abridged_cast":[{"name":"Rooney
173
+ Mara","id":"770826640","characters":["Emily Taylor"]},{"name":"Channing Tatum","id":"162661835","characters":["Martin
174
+ Taylor"]},{"name":"Jude Law","id":"162659420","characters":["Dr. Jonathan
175
+ Banks"]},{"name":"Catherine Zeta-Jones","id":"162654886","characters":["Dr.
176
+ Victoria Siebert"]},{"name":"Vinessa Shaw","id":"364606823","characters":["Dierdre
177
+ Banks"]}],"alternate_ids":{"imdb":"2053463"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305509.json","alternate":"http://www.rottentomatoes.com/m/side_effects_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305509/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305509/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305509/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305509/similar.json"}},{"id":"771253886","title":"Silver
178
+ Linings Playbook","year":2012,"mpaa_rating":"R","runtime":120,"critics_consensus":"Silver
179
+ Linings Playbook walks a tricky thematic tightrope, but David O. Russell''s
180
+ sensitive direction and some sharp work from a talented cast gives it true
181
+ balance.","release_dates":{"theater":"2012-11-21"},"ratings":{"critics_rating":"Certified
182
+ Fresh","critics_score":92,"audience_rating":"Upright","audience_score":89},"synopsis":"Life
183
+ doesn''t always go according to plan. Pat Solatano (Bradley Cooper) has lost
184
+ everything -- his house, his job, and his wife. He now finds himself living
185
+ back with his mother (Jacki Weaver) and father (Robert DeNiro) after spending
186
+ eight months is a state institution on a plea bargain. Pat is determined to
187
+ rebuild his life, remain positive and reunite with his wife, despite the challenging
188
+ circumstances of their separation. All Pat''s parents want is for him to get
189
+ back on his feet-and to share their family''s obsession with the Philadelphia
190
+ Eagles football team. When Pat meets Tiffany (Jennifer Lawrence), a mysterious
191
+ girl with problems of her own, things get complicated. Tiffany offers to help
192
+ Pat reconnect with his wife, but only if he''ll do something very important
193
+ for her in return. As their deal plays out, an unexpected bond begins to form
194
+ between them, and silver linings appear in both of their lives. -- (C) Weinstein","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/65/11166572_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/65/11166572_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/65/11166572_det.jpg","original":"http://content6.flixster.com/movie/11/16/65/11166572_ori.jpg"},"abridged_cast":[{"name":"Bradley
195
+ Cooper","id":"351525448","characters":["Pat","Pat Solitano"]},{"name":"Jennifer
196
+ Lawrence","id":"770800260","characters":["Tiffany"]},{"name":"Robert De Niro","id":"162655521","characters":["Pat
197
+ Sr."]},{"name":"Jacki Weaver","id":"651402543","characters":["Delores","Dolores"]},{"name":"Chris
198
+ Tucker","id":"162661014","characters":["Danny"]}],"alternate_ids":{"imdb":"1045658"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253886.json","alternate":"http://www.rottentomatoes.com/m/silver_linings_playbook/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253886/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253886/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253886/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253886/similar.json"}},{"id":"771225176","title":"Hansel
199
+ and Gretel: Witch Hunters","year":2013,"mpaa_rating":"R","runtime":100,"critics_consensus":"Alternately
200
+ bloody and silly, Hansel and Gretel: Witch Hunters fails as both a fantasy
201
+ adventure and as a parody of same.","release_dates":{"theater":"2013-01-25"},"ratings":{"critics_rating":"Rotten","critics_score":15,"audience_rating":"Upright","audience_score":63},"synopsis":"After
202
+ getting a taste for blood as children, Hansel (Jeremy Renner) and Gretel (Gemma
203
+ Arterton) have become the ultimate vigilantes, hell bent on retribution. Now,
204
+ unbeknownst to them, Hansel and Gretel have become the hunted, and must face
205
+ an evil far greater than witches...their past. -- (C) Paramount","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/75/11167557_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/75/11167557_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/75/11167557_det.jpg","original":"http://content7.flixster.com/movie/11/16/75/11167557_ori.jpg"},"abridged_cast":[{"name":"Jeremy
206
+ Renner","id":"309973652","characters":["Hansel"]},{"name":"Gemma Arterton","id":"770692644","characters":["Gretel"]},{"name":"Famke
207
+ Janssen","id":"162669246","characters":["Muriel"]},{"name":"Peter Stormare","id":"162725032","characters":["Berringer"]},{"name":"Ingrid
208
+ Bolso Berdal","id":"573772010","characters":["Horned Witch"]}],"alternate_ids":{"imdb":"1428538"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225176.json","alternate":"http://www.rottentomatoes.com/m/hansel_and_gretel_witch_hunters/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225176/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225176/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225176/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771225176/similar.json"}},{"id":"771249562","title":"Zero
209
+ Dark Thirty","year":2012,"mpaa_rating":"R","runtime":157,"critics_consensus":"Gripping,
210
+ suspenseful, and brilliantly crafted, Zero Dark Thirty dramatizes the hunt
211
+ for Osama bin Laden with intelligence and an eye for detail.","release_dates":{"theater":"2013-01-11","dvd":"2013-03-19"},"ratings":{"critics_rating":"Certified
212
+ Fresh","critics_score":94,"audience_rating":"Upright","audience_score":82},"synopsis":"For
213
+ a decade, an elite team of intelligence and military operatives, working in
214
+ secret across the globe, devoted themselves to a single goal: to find and
215
+ eliminate Osama bin Laden. Zero Dark Thirty reunites the Oscar winning team
216
+ of director-producer Kathryn Bigelow and writer-producer Mark Boal (The Hurt
217
+ Locker) for the story of history''s greatest manhunt for the world''s most
218
+ dangerous man. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/75/11167541_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/75/11167541_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/75/11167541_det.jpg","original":"http://content7.flixster.com/movie/11/16/75/11167541_ori.jpg"},"abridged_cast":[{"name":"Joel
219
+ Edgerton","id":"162733204","characters":["Patrick - Squadron Team Leader"]},{"name":"Jason
220
+ Clarke","id":"359854726","characters":["Dan"]},{"name":"Jessica Chastain","id":"770760183","characters":["Maya"]},{"name":"Kyle
221
+ Chandler","id":"770695318","characters":["Joseph Bradley"]},{"name":"Jennifer
222
+ Ehle","id":"162924763","characters":["Jessica"]}],"alternate_ids":{"imdb":"1790885"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771249562.json","alternate":"http://www.rottentomatoes.com/m/zero_dark_thirty/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771249562/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771249562/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771249562/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771249562/similar.json"}},{"id":"771313372","title":"Mama","year":2013,"mpaa_rating":"PG-13","runtime":100,"critics_consensus":"If
223
+ you''re into old-school scares over cheap gore, you''ll be able to get over
224
+ Mama''s confusing script and contrived plot devices.","release_dates":{"theater":"2013-01-18"},"ratings":{"critics_rating":"Fresh","critics_score":62,"audience_rating":"Upright","audience_score":69},"synopsis":"Guillermo
225
+ del Toro presents Mama, a supernatural thriller that tells the haunting tale
226
+ of two little girls who disappeared into the woods the day that their mother
227
+ was murdered. When they are rescued years later and begin a new life, they
228
+ find that someone or something still wants to come tuck them in at night.
229
+ The day their father killed their mother, sisters Victoria and Lilly vanished
230
+ near their suburban neighborhood. For five long years, their Uncle Lucas (Nikolaj
231
+ Coster-Waldau) and his girlfriend, Annabel (Jessica Chastain), have been madly
232
+ searching for them. But when, incredibly, the kids are found alive in a decrepit
233
+ cabin, the couple wonders if the girls are the only guests they have welcomed
234
+ into their home. (c)Universal","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/68/11166822_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/68/11166822_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/68/11166822_det.jpg","original":"http://content8.flixster.com/movie/11/16/68/11166822_ori.jpg"},"abridged_cast":[{"name":"Jessica
235
+ Chastain","id":"770760183","characters":["Annabel"]},{"name":"Nikolaj Coster-Waldau","id":"559808757","characters":["Lucas
236
+ / Jeffrey"]},{"name":"Megan Charpentier","id":"770834162","characters":["Victoria"]},{"name":"Isabelle
237
+ Nelisse","id":"771416699","characters":["Lilly"]},{"name":"Daniel Kash","id":"770695154","characters":["Dr.
238
+ Dreyfuss"]}],"alternate_ids":{"imdb":"2023587"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313372.json","alternate":"http://www.rottentomatoes.com/m/mama_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313372/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313372/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313372/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313372/similar.json"}},{"id":"771256128","title":"Argo","year":2012,"mpaa_rating":"R","runtime":120,"critics_consensus":"Tense,
239
+ exciting, and often darkly comic, Argo recreates a historical event with vivid
240
+ attention to detail and finely wrought characters.","release_dates":{"theater":"2012-10-12","dvd":"2013-02-19"},"ratings":{"critics_rating":"Certified
241
+ Fresh","critics_score":96,"audience_rating":"Upright","audience_score":93},"synopsis":"Based
242
+ on true events, Argo chronicles the life-or-death covert operation to rescue
243
+ six Americans, which unfolded behind the scenes of the Iran hostage crisis-the
244
+ truth of which was unknown by the public for decades. On November 4, 1979,
245
+ as the Iranian revolution reaches its boiling point, militants storm the U.S.
246
+ embassy in Tehran, taking 52 Americans hostage. But, in the midst of the chaos,
247
+ six Americans manage to slip away and find refuge in the home of the Canadian
248
+ ambassador. Knowing it is only a matter of time before the six are found out
249
+ and likely killed, a CIA \"exfiltration\" specialist named Tony Mendez (Ben
250
+ Affleck) comes up with a risky plan to get them safely out of the country.
251
+ A plan so incredible, it could only happen in the movies. -- (C) Warner Bros.","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/91/11169181_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/91/11169181_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/91/11169181_det.jpg","original":"http://content7.flixster.com/movie/11/16/91/11169181_ori.jpg"},"abridged_cast":[{"name":"Ben
252
+ Affleck","id":"162665891","characters":["Tony Mendez"]},{"name":"Bryan Cranston","id":"326392501","characters":["Jack
253
+ O''Donnell"]},{"name":"Alan Arkin","id":"162666144","characters":["Lester
254
+ Siegel"]},{"name":"John Goodman","id":"162655706","characters":["John Chambers"]},{"name":"Taylor
255
+ Schilling","id":"771036916","characters":["Christine Mendez"]}],"alternate_ids":{"imdb":"1024648"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771256128.json","alternate":"http://www.rottentomatoes.com/m/argo_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771256128/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771256128/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771256128/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771256128/similar.json"}},{"id":"770682079","title":"Lincoln","year":2012,"mpaa_rating":"PG-13","runtime":149,"critics_consensus":"Daniel
256
+ Day-Lewis characteristically delivers in this witty, dignified portrait that
257
+ immerses the audience in its world and entertains even as it informs.","release_dates":{"theater":"2012-11-16"},"ratings":{"critics_rating":"Certified
258
+ Fresh","critics_score":89,"audience_rating":"Upright","audience_score":85},"synopsis":"Steven
259
+ Spielberg directs Daniel Day-Lewis in Lincoln, a revealing drama that focuses
260
+ on the 16th President''s tumultuous final months in office. In a nation divided
261
+ by war and the strong winds of change, Lincoln pursues a course of action
262
+ designed to end the war, unite the country and abolish slavery. With the moral
263
+ courage and fierce determination to succeed, his choices during this critical
264
+ moment will change the fate of generations to come. -- (C) Walt Disney","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/63/11166394_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/63/11166394_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/63/11166394_det.jpg","original":"http://content8.flixster.com/movie/11/16/63/11166394_ori.jpg"},"abridged_cast":[{"name":"Daniel
265
+ Day-Lewis","id":"162660044","characters":["Abraham Lincoln"]},{"name":"Sally
266
+ Field","id":"162656044","characters":["Mary Todd Lincoln"]},{"name":"David
267
+ Strathairn","id":"162654527","characters":["William Seward"]},{"name":"Joseph
268
+ Gordon-Levitt","id":"162666960","characters":["Robert Lincoln","Robert Todd","Robert
269
+ Todd Lincoln"]},{"name":"James Spader","id":"162678807","characters":["W.N.
270
+ Bilbo","WN Bilbo"]}],"alternate_ids":{"imdb":"0443272"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770682079.json","alternate":"http://www.rottentomatoes.com/m/lincoln_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/770682079/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/770682079/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/770682079/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/770682079/similar.json"}},{"id":"770673482","title":"Life
271
+ of Pi","year":2012,"mpaa_rating":"PG","runtime":127,"critics_consensus":"A
272
+ 3D adaptation of a supposedly \"unfilmable\" book, Ang Lee''s Life of Pi achieves
273
+ the near impossible -- it''s an astonishing technical achievement that''s
274
+ also emotionally rewarding.","release_dates":{"theater":"2012-11-21","dvd":"2013-03-12"},"ratings":{"critics_rating":"Certified
275
+ Fresh","critics_score":88,"audience_rating":"Upright","audience_score":87},"synopsis":"Director
276
+ Ang Lee creates a groundbreaking movie event about a young man who survives
277
+ a disaster at sea and is hurtled into an epic journey of adventure and discovery.
278
+ While cast away, he forms an amazing and unexpected connection with another
279
+ survivor...a fearsome Bengal tiger. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/60/11166061_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/60/11166061_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/60/11166061_det.jpg","original":"http://content7.flixster.com/movie/11/16/60/11166061_ori.jpg"},"abridged_cast":[{"name":"Suraj
280
+ Sharma","id":"771086290","characters":["Pi","Pi Patel","Piscine Militor Patel
281
+ - 17 years old","Young Pi Patel"]},{"name":"Irfan Khan","id":"280206663","characters":["Adult
282
+ Pi Patel","Piscine Militor Patel - Adult"]},{"name":"Ayush Tandon","id":"771428293","characters":["Piscine
283
+ Militor Patel - Child"]},{"name":"Tabu","id":"326391044","characters":["Gita
284
+ Patel"]},{"name":"Adil Hussain","id":"770864008","characters":["Pi''s Father","Santosh
285
+ Patel"]}],"alternate_ids":{"imdb":"0454876"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770673482.json","alternate":"http://www.rottentomatoes.com/m/life-of-pi/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/770673482/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/770673482/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/770673482/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/770673482/similar.json"}},{"id":"771245718","title":"Django
286
+ Unchained","year":2012,"mpaa_rating":"R","runtime":166,"critics_consensus":"Bold,
287
+ bloody, and stylistically daring, Django Unchained is another incendiary masterpiece
288
+ from Quentin Tarantino.","release_dates":{"theater":"2012-12-25"},"ratings":{"critics_rating":"Certified
289
+ Fresh","critics_score":89,"audience_rating":"Upright","audience_score":94},"synopsis":"Set
290
+ in the South two years before the Civil War, Django Unchained stars Jamie
291
+ Foxx as Django, a slave whose brutal history with his former owners lands
292
+ him face-to-face with German-born bounty hunter Dr. King Schultz (Christoph
293
+ Waltz). Schultz is on the trail of the murderous Brittle brothers, and only
294
+ Django can lead him to his bounty. Honing vital hunting skills, Django remains
295
+ focused on one goal: finding and rescuing Broomhilda (Kerry Washington), the
296
+ wife he lost to the slave trade long ago. Django and Schultz''s search ultimately
297
+ leads them to Calvin Candie (Leonardo DiCaprio), the proprietor of \"Candyland,\"
298
+ an infamous plantation. Exploring the compound under false pretenses, Django
299
+ and Schultz arouse the suspicion of Stephen (Samuel L. Jackson), Candie''s
300
+ trusted house slave. -- (C) Weinstein","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/75/11167576_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/75/11167576_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/75/11167576_det.jpg","original":"http://content6.flixster.com/movie/11/16/75/11167576_ori.jpg"},"abridged_cast":[{"name":"Jamie
301
+ Foxx","id":"162652975","characters":["Django"]},{"name":"Leonardo DiCaprio","id":"162659161","characters":["Calvin
302
+ Candie"]},{"name":"Christoph Waltz","id":"770738334","characters":["Dr. King
303
+ Schultz"]},{"name":"Samuel L. Jackson","id":"162652156","characters":["Stephen"]},{"name":"Walton
304
+ Goggins","id":"585855934","characters":["Billy Crash"]}],"alternate_ids":{"imdb":"1853728"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771245718.json","alternate":"http://www.rottentomatoes.com/m/django_unchained_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771245718/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771245718/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771245718/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771245718/similar.json"}},{"id":"771269968","title":"Quartet","year":2013,"mpaa_rating":"PG-13","runtime":97,"critics_consensus":"It''s
305
+ sweet, gentle, and predictable to a fault, but Dustin Hoffman''s affectionate
306
+ direction and the talented cast''s amiable charm make Quartet too difficult
307
+ to resist.","release_dates":{"theater":"2013-01-11"},"ratings":{"critics_rating":"Certified
308
+ Fresh","critics_score":79,"audience_rating":"Upright","audience_score":67},"synopsis":"Beecham
309
+ House is abuzz. The rumor circling the halls is that the home for retired
310
+ musicians is soon to play host to a new resident. Word is, it''s a star. For
311
+ Reginald Paget (Tom Courtenay), Wilfred Bond (Billy Connolly) and Cecily Robson
312
+ (Pauline Collins) this sort of talk is par for the course at the gossipy home.
313
+ But they''re in for a special shock when the new arrival turns out to be none
314
+ other than their former singing partner, Jean Horton (Maggie Smith). Her subsequent
315
+ career as a star soloist, and the ego that accompanied it, split up their
316
+ long friendship and ended her marriage to Reggie, who takes the news of her
317
+ arrival particularly hard. Can the passage of time heal old wounds? And will
318
+ the famous quartet be able to patch up their differences in time for Beecham
319
+ House''s gala concert? -- (C) Weinstein","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/79/11167905_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/79/11167905_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/79/11167905_det.jpg","original":"http://content7.flixster.com/movie/11/16/79/11167905_ori.jpg"},"abridged_cast":[{"name":"Maggie
320
+ Smith","id":"162652436","characters":["Jean","Jean Horton"]},{"name":"Tom
321
+ Courtenay","id":"162674631","characters":["Reggie Paget","Reginald","Reginald
322
+ Paget"]},{"name":"Billy Connolly","id":"162662548","characters":["Wilf","Wilf
323
+ Bond","Wilfred Bond"]},{"name":"Pauline Collins","id":"162672694","characters":["Cecily
324
+ Robson","Cissy","Cissy Robson"]},{"name":"Michael Gambon","id":"162676818","characters":["Cedric","Cedric
325
+ Livingston"]}],"alternate_ids":{"imdb":"1441951"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269968.json","alternate":"http://www.rottentomatoes.com/m/quartet_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269968/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269968/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269968/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771269968/similar.json"}},{"id":"770675766","title":"The
326
+ Hobbit: An Unexpected Journey","year":2012,"mpaa_rating":"PG-13","runtime":170,"critics_consensus":"Peter
327
+ Jackson''s return to Middle-earth is an earnest, visually resplendent trip,
328
+ but the film''s deliberate pace robs the material of some of its majesty.","release_dates":{"theater":"2012-12-14","dvd":"2013-03-19"},"ratings":{"critics_rating":"Fresh","critics_score":65,"audience_rating":"Upright","audience_score":84},"synopsis":"The
329
+ Hobbit: An Unexpected Journey follows title character Bilbo Baggins, who is
330
+ swept into an epic quest to reclaim the lost Dwarf Kingdom of Erebor, which
331
+ was long ago conquered by the dragon Smaug. Approached out of the blue by
332
+ the wizard Gandalf the Grey, Bilbo finds himself joining a company of thirteen
333
+ dwarves led by the legendary warrior Thorin Oakenshield. Although their goal
334
+ lies to the East and the wastelands of the Lonely Mountain, first they must
335
+ escape the goblin tunnels, where Bilbo meets the creature that will change
336
+ his life forever... Gollum. Here, alone with Gollum, on the shores of an underground
337
+ lake, the unassuming Bilbo Baggins not only discovers depths ofguile and courage
338
+ that surprise even him, he also gains possession of Gollum''s \"precious\"
339
+ ...a simple, gold ring that is tied to the fate of all Middle-earth in ways
340
+ Bilbo cannot begin to know. -- (C) Warner Bros","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/28/11162899_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/28/11162899_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/28/11162899_det.jpg","original":"http://content9.flixster.com/movie/11/16/28/11162899_ori.jpg"},"abridged_cast":[{"name":"Ian
341
+ McKellen","id":"162653241","characters":["Gandalf"]},{"name":"Martin Freeman","id":"162652296","characters":["Bilbo","Bilbo
342
+ Baggins"]},{"name":"Richard Armitage","id":"546952855","characters":["Thorin","Thorin
343
+ Oakenshield"]},{"name":"Ken Stott","id":"407726897","characters":["Balin"]},{"name":"Graham
344
+ McTavish","id":"770706931","characters":["Dwalin"]}],"alternate_ids":{"imdb":"0903624"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/770675766.json","alternate":"http://www.rottentomatoes.com/m/the_hobbit_an_unexpected_journey/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/770675766/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/770675766/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/770675766/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/770675766/similar.json"}},{"id":"771253949","title":"Les
345
+ Miserables","year":2012,"mpaa_rating":"PG-13","runtime":158,"critics_consensus":"Impeccably
346
+ mounted but occasionally bombastic, Les Miserables largely succeeds thanks
347
+ to bravura performances from its distinguished cast.","release_dates":{"theater":"2012-12-25","dvd":"2013-03-22"},"ratings":{"critics_rating":"Fresh","critics_score":70,"audience_rating":"Upright","audience_score":82},"synopsis":"Set
348
+ against the backdrop of 19th-century France, Les Miserables tells an enthralling
349
+ story of broken dreams and unrequited love, passion, sacrifice and redemption-a
350
+ timeless testament to the survival of the human spirit. Jackman plays ex-prisoner
351
+ Jean Valjean, hunted for decades by the ruthless policeman Javert (Crowe)
352
+ after he breaks parole. When Valjean agrees to care for factory worker Fantine''s
353
+ (Hathaway) young daughter, Cosette, their lives change forever. In December
354
+ 2012, the world''s longest-running musical brings its power to the big screen
355
+ in Tom Hooper''s sweeping and spectacular interpretation of Victor Hugo''s
356
+ epic tale. -- (C) Universal","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/82/11168223_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/82/11168223_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/82/11168223_det.jpg","original":"http://content9.flixster.com/movie/11/16/82/11168223_ori.jpg"},"abridged_cast":[{"name":"Hugh
357
+ Jackman","id":"162661503","characters":["Jean Valjean"]},{"name":"Russell
358
+ Crowe","id":"162652569","characters":["Inspector Javert","Javert"]},{"name":"Anne
359
+ Hathaway","id":"162656190","characters":["Fantine"]},{"name":"Amanda Seyfried","id":"364614826","characters":["Cosette"]},{"name":"Sacha
360
+ Baron Cohen","id":"162652531","characters":["Thenardier","Thernardier"]}],"alternate_ids":{"imdb":"1707386"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253949.json","alternate":"http://www.rottentomatoes.com/m/les_miserables_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253949/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253949/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253949/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253949/similar.json"}},{"id":"771221512","title":"Wreck-it
361
+ Ralph","year":2012,"mpaa_rating":"PG","runtime":92,"critics_consensus":"Equally
362
+ entertaining for both kids and parents old enough to catch the references,
363
+ Wreck-It Ralph is a clever, colorful adventure built on familiar themes and
364
+ joyful nostalgia.","release_dates":{"theater":"2012-11-02","dvd":"2013-03-05"},"ratings":{"critics_rating":"Certified
365
+ Fresh","critics_score":85,"audience_rating":"Upright","audience_score":89},"synopsis":"Ralph
366
+ (John C. Reilly) is tired of being overshadowed by Fix-It Felix (Jack McBrayer),
367
+ the \"good guy\" star of their game who always gets to save the day. But after
368
+ decades doing the same thing and seeing all the glory go to Felix, Ralph decides
369
+ he''s tired of playing the role of a bad guy. He takes matters into his own
370
+ massive hands and sets off on a game-hopping journey across the arcade through
371
+ every generation of video games to prove he''s got what it takes to be a hero.
372
+ On his quest, he meets the tough-as-nails Sergeant Calhoun (Jane Lynch) from
373
+ the first-person action game Hero''s Duty. But it''s the feisty misfit Vanellope
374
+ von Schweetz (Sarah Silverman) from the candy-coated cart racing game, Sugar
375
+ Rush, whose world is threatened when Ralph accidentally unleashes a deadly
376
+ enemy that threatens the entire arcade. Will Ralph realize his dream and save
377
+ the day before it''s too late? -- (C) Disney","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/66/11166645_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/66/11166645_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/66/11166645_det.jpg","original":"http://content7.flixster.com/movie/11/16/66/11166645_ori.jpg"},"abridged_cast":[{"name":"John
378
+ C. Reilly","id":"162652855","characters":["Wreck-It Ralph"]},{"name":"Sarah
379
+ Silverman","id":"162655308","characters":["Vanellope von Schweetz"]},{"name":"Jack
380
+ McBrayer","id":"770700054","characters":["Fix-It Felix","Fix-It Felix Jr."]},{"name":"Jane
381
+ Lynch","id":"326392219","characters":["Sergeant Calhoun"]},{"name":"Alan Tudyk","id":"162654268","characters":["King
382
+ Candy"]}],"alternate_ids":{"imdb":"1772341"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771221512.json","alternate":"http://www.rottentomatoes.com/m/wreck_it_ralph/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771221512/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771221512/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771221512/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771221512/similar.json"}},{"id":"771307454","title":"Amour","year":2012,"mpaa_rating":"PG-13","runtime":127,"critics_consensus":"With
383
+ towering performances and an unflinching script from Michael Haneke, Amour
384
+ represents an honest, heartwrenching depiction of deep love and responsibility.","release_dates":{"theater":"2012-12-19"},"ratings":{"critics_rating":"Certified
385
+ Fresh","critics_score":93,"audience_rating":"Upright","audience_score":85},"synopsis":"Georges
386
+ and Anne are in their eighties. They are cultivated, retired music teachers.
387
+ Their daughter, who is also a musician, lives abroad with her family. One
388
+ day, Anne has an attack. The couple''s bond of love is severely tested. --
389
+ (C) Official Site","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/54/11165435_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/54/11165435_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/54/11165435_det.jpg","original":"http://content9.flixster.com/movie/11/16/54/11165435_ori.jpg"},"abridged_cast":[{"name":"Jean-Louis
390
+ Trintignant","id":"162667842","characters":["Georges"]},{"name":"Emmanuelle
391
+ Riva","id":"266750254","characters":["Anne"]},{"name":"Isabelle Huppert","id":"162674002","characters":["Eva"]}],"alternate_ids":{"imdb":"602620"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771307454.json","alternate":"http://www.rottentomatoes.com/m/771307454/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771307454/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771307454/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771307454/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771307454/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/box_office.json?limit=20&country=us","alternate":"http://www.rottentomatoes.com/movie/box-office/"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/box_office.json?limit={num-results}&country={country-code}"}
392
+
393
+ '
394
+ http_version:
395
+ recorded_at: Wed, 20 Feb 2013 15:31:50 GMT
396
+ recorded_with: VCR 2.4.0