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,380 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/movies/in_theaters.json?apikey=<API_KEY>&country=us&page=1&page_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:50 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=DAEF3FCD1E3EF0F24CEE67BAE5B6E146.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
+
78
+ {"total":113,"movies":[{"id":"771267600","title":"Escape From Planet Earth
79
+ 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
80
+ 3D animated family comedy catapults moviegoers to planet Baab where admired
81
+ astronaut Scorch Supernova (Brendan Fraser) is a national hero to the blue
82
+ alien population. A master of daring rescues, Scorch pulls off astonishing
83
+ feats with the quiet aid of his nerdy, by-the-rules brother, Gary (Rob Corddry),
84
+ head of mission control at BASA. When BASA''s no-nonsense chief Lena (Jessica
85
+ Alba) informs the brothers of an SOS from a notoriously dangerous planet,
86
+ Scorch rejects Gary''s warnings and bounds off for yet another exciting mission.
87
+ But when Scorch finds himself caught in a fiendish trap set by the evil Shanker
88
+ (William Shatner) it''s up to scrawny, risk-adverse Gary to do the real rescuing.
89
+ As the interplanetary stakes rise to new heights, Gary is left to save his
90
+ brother, his planet, his beloved wife Kira (Sarah Jessica Parker) and their
91
+ 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
92
+ Fraser","id":"162662763","characters":["Scorch Supernova"]},{"name":"Rob Corddry","id":"312208850","characters":["Gary","Gary
93
+ Supernova"]},{"name":"Ricky Gervais","id":"378620549","characters":["Mr. James
94
+ Bing"]},{"name":"Jonathan Morgan Heit","id":"770825935","characters":["Kip
95
+ Supernova"]},{"name":"Jessica Alba","id":"162652782","characters":["Lena","Lena
96
+ 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":"771257607","title":"A
97
+ Good Day To Die Hard","year":2013,"mpaa_rating":"R","runtime":110,"critics_consensus":"A
98
+ Good Day to Die Hard is the weakest entry in a storied franchise, and not
99
+ 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
100
+ McClane (Bruce Willis) heads to Russia in this fifth installment of the Die
101
+ Hard film series. Skip Woods (The A-Team) provides the script, with Max Payne''s
102
+ 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
103
+ Willis","id":"162652509","characters":["John McClane"]},{"name":"Jai Courtney","id":"771383833","characters":["Jack
104
+ McClane"]},{"name":"Sebastian Koch","id":"364644078","characters":["Komarov"]},{"name":"Mary
105
+ Elizabeth Winstead","id":"341817661","characters":["Lucy"]},{"name":"Yulia
106
+ 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":"770893918","title":"Safe
107
+ Haven","year":2013,"mpaa_rating":"PG-13","runtime":115,"critics_consensus":"Schmaltzy,
108
+ predictable, and melodramatic, Safe Haven also suffers from a ludicrous plot
109
+ 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
110
+ affirming and suspenseful story about a young woman''s struggle to love again,
111
+ Safe Haven is based on the novel from Nicholas Sparks, the best-selling author
112
+ behind the hit films The Notebook and Dear John. When a mysterious young woman
113
+ arrives in a small North Carolina town, her reluctance to join the tight knit
114
+ community raises questions about her past. Slowly, she begins putting down
115
+ roots, and gains the courage to start a relationship with Alex, a widowed
116
+ store owner with two young children. But dark secrets intrude on her new life
117
+ with such terror that she is forced to rediscover the meaning of sacrifice
118
+ 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
119
+ Duhamel","id":"162669304","characters":["Alex","Alex Wheatley"]},{"name":"Julianne
120
+ Hough","id":"770848071","characters":["Katie","Katie Feldman"]},{"name":"Cobie
121
+ Smulders","id":"364659249","characters":["Jo"]},{"name":"David Lyons","id":"770679382","characters":["Kevin
122
+ 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":"771270981","title":"Identity
123
+ Thief","year":2013,"mpaa_rating":"R","runtime":107,"critics_consensus":"Identity
124
+ Thief''s few laughs are attributable to Melissa McCarthy and Jason Bateman,
125
+ 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
126
+ funds have allowed Diana (McCarthy) to live it up on the outskirts of Miami,
127
+ where the queen of retail buys whatever strikes her fancy. There''s only one
128
+ glitch: The ID she''s using to finance these sprees reads \"Sandy Bigelow
129
+ Patterson\"....and it belongs to an accounts rep (Bateman) who lives halfway
130
+ across the U.S. With only one week to hunt down the con artist before his
131
+ world implodes, the real Sandy Bigelow Patterson heads south to confront the
132
+ woman with an all-access pass to his life. And as he attempts to bribe, coax
133
+ and wrangle her the 2,000 miles to Denver, one easy target will discover just
134
+ 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
135
+ Bateman","id":"326298973","characters":["Sandy Patterson"]},{"name":"Genesis
136
+ Rodriguez","id":"770770383","characters":["Marisol"]},{"name":"John Cho","id":"300371277","characters":["Daniel
137
+ Casey"]},{"name":"Melissa McCarthy","id":"528361348","characters":["Diana"]},{"name":"Jon
138
+ 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":"771225176","title":"Hansel
139
+ and Gretel: Witch Hunters","year":2013,"mpaa_rating":"R","runtime":100,"critics_consensus":"Alternately
140
+ bloody and silly, Hansel and Gretel: Witch Hunters fails as both a fantasy
141
+ 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
142
+ getting a taste for blood as children, Hansel (Jeremy Renner) and Gretel (Gemma
143
+ Arterton) have become the ultimate vigilantes, hell bent on retribution. Now,
144
+ unbeknownst to them, Hansel and Gretel have become the hunted, and must face
145
+ 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
146
+ Renner","id":"309973652","characters":["Hansel"]},{"name":"Gemma Arterton","id":"770692644","characters":["Gretel"]},{"name":"Famke
147
+ Janssen","id":"162669246","characters":["Muriel"]},{"name":"Peter Stormare","id":"162725032","characters":["Berringer"]},{"name":"Ingrid
148
+ 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":"771269779","title":"Beautiful
149
+ Creatures","year":2013,"mpaa_rating":"PG-13","runtime":118,"critics_consensus":"Charming
150
+ romantic leads and esteemed supporting cast aside, Beautiful Creatures is
151
+ 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
152
+ supernatural love story set in the South, \"Beautiful Creatures\" tells the
153
+ tale of two star-crossed lovers: Ethan (Alden Ehrenreich), a young man longing
154
+ to escape his small town, and Lena (Alice Englert), a mysterious new girl.
155
+ Together, they uncover dark secrets about their respective families, their
156
+ 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
157
+ Ehrenreich","id":"770833120","characters":["Ethan Wate"]},{"name":"Alice Englert","id":"770904089","characters":["Lena
158
+ Duchannes"]},{"name":"Jeremy Irons","id":"162652244","characters":["Macon
159
+ Ravenwood"]},{"name":"Viola Davis","id":"162655119","characters":["Amma"]},{"name":"Emmy
160
+ 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":"771238285","title":"Warm
161
+ Bodies","year":2013,"mpaa_rating":"PG-13","runtime":97,"critics_consensus":"Warm
162
+ Bodies offers a sweet, well-acted spin on a genre that all too often lives
163
+ down to its brain-dead protagonists.","release_dates":{"theater":"2013-02-01"},"ratings":{"critics_rating":"Certified
164
+ Fresh","critics_score":78,"audience_rating":"Upright","audience_score":82},"synopsis":"A
165
+ funny new twist on a classic love story, WARM BODIES is a poignant tale about
166
+ the power of human connection. After a zombie epidemic, R (a highly unusual
167
+ zombie) encounters Julie (a human survivor), and rescues her from a zombie
168
+ attack. Julie sees that R is different from the other zombies, and as the
169
+ two form a special relationship in their struggle for survival, R becomes
170
+ increasingly more human - setting off an exciting, romantic, and often comical
171
+ chain of events that begins to transform the other zombies and maybe even
172
+ 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
173
+ Hoult","id":"162654938","characters":["R"]},{"name":"Teresa Palmer","id":"347990464","characters":["Julie"]},{"name":"Rob
174
+ Corddry","id":"312208850","characters":["M"]},{"name":"John Malkovich","id":"162655610","characters":["General
175
+ Grigio","Grigio"]},{"name":"Dave Franco","id":"770703179","characters":["Perry","Perry
176
+ 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":"771305509","title":"Side
177
+ Effects","year":2013,"mpaa_rating":"R","runtime":106,"critics_consensus":"A
178
+ smart, clever thriller with plenty of disquieting twists, Side Effects is
179
+ yet another assured effort from director Steven Soderbergh.","release_dates":{"theater":"2013-02-08"},"ratings":{"critics_rating":"Certified
180
+ Fresh","critics_score":85,"audience_rating":"Upright","audience_score":70},"synopsis":"SIDE
181
+ EFFECTS is a provocative thriller about Emily and Martin (Rooney Mara and
182
+ Channing Tatum), a successful New York couple whose world unravels when a
183
+ new drug prescribed by Emily''s psychiatrist (Jude Law) - intended to treat
184
+ 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
185
+ Mara","id":"770826640","characters":["Emily Taylor"]},{"name":"Channing Tatum","id":"162661835","characters":["Martin
186
+ Taylor"]},{"name":"Jude Law","id":"162659420","characters":["Dr. Jonathan
187
+ Banks"]},{"name":"Catherine Zeta-Jones","id":"162654886","characters":["Dr.
188
+ Victoria Siebert"]},{"name":"Vinessa Shaw","id":"364606823","characters":["Dierdre
189
+ 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
190
+ Linings Playbook","year":2012,"mpaa_rating":"R","runtime":120,"critics_consensus":"Silver
191
+ Linings Playbook walks a tricky thematic tightrope, but David O. Russell''s
192
+ sensitive direction and some sharp work from a talented cast gives it true
193
+ balance.","release_dates":{"theater":"2012-11-21"},"ratings":{"critics_rating":"Certified
194
+ Fresh","critics_score":92,"audience_rating":"Upright","audience_score":89},"synopsis":"Life
195
+ doesn''t always go according to plan. Pat Solatano (Bradley Cooper) has lost
196
+ everything -- his house, his job, and his wife. He now finds himself living
197
+ back with his mother (Jacki Weaver) and father (Robert DeNiro) after spending
198
+ eight months is a state institution on a plea bargain. Pat is determined to
199
+ rebuild his life, remain positive and reunite with his wife, despite the challenging
200
+ circumstances of their separation. All Pat''s parents want is for him to get
201
+ back on his feet-and to share their family''s obsession with the Philadelphia
202
+ Eagles football team. When Pat meets Tiffany (Jennifer Lawrence), a mysterious
203
+ girl with problems of her own, things get complicated. Tiffany offers to help
204
+ Pat reconnect with his wife, but only if he''ll do something very important
205
+ for her in return. As their deal plays out, an unexpected bond begins to form
206
+ 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
207
+ Cooper","id":"351525448","characters":["Pat","Pat Solitano"]},{"name":"Jennifer
208
+ Lawrence","id":"770800260","characters":["Tiffany"]},{"name":"Robert De Niro","id":"162655521","characters":["Pat
209
+ Sr."]},{"name":"Jacki Weaver","id":"651402543","characters":["Delores","Dolores"]},{"name":"Chris
210
+ 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":"771313372","title":"Mama","year":2013,"mpaa_rating":"PG-13","runtime":100,"critics_consensus":"If
211
+ you''re into old-school scares over cheap gore, you''ll be able to get over
212
+ 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
213
+ del Toro presents Mama, a supernatural thriller that tells the haunting tale
214
+ of two little girls who disappeared into the woods the day that their mother
215
+ was murdered. When they are rescued years later and begin a new life, they
216
+ find that someone or something still wants to come tuck them in at night.
217
+ The day their father killed their mother, sisters Victoria and Lilly vanished
218
+ near their suburban neighborhood. For five long years, their Uncle Lucas (Nikolaj
219
+ Coster-Waldau) and his girlfriend, Annabel (Jessica Chastain), have been madly
220
+ searching for them. But when, incredibly, the kids are found alive in a decrepit
221
+ cabin, the couple wonders if the girls are the only guests they have welcomed
222
+ 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
223
+ Chastain","id":"770760183","characters":["Annabel"]},{"name":"Nikolaj Coster-Waldau","id":"559808757","characters":["Lucas
224
+ / Jeffrey"]},{"name":"Megan Charpentier","id":"770834162","characters":["Victoria"]},{"name":"Isabelle
225
+ Nelisse","id":"771416699","characters":["Lilly"]},{"name":"Daniel Kash","id":"770695154","characters":["Dr.
226
+ 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":"771249562","title":"Zero
227
+ Dark Thirty","year":2012,"mpaa_rating":"R","runtime":157,"critics_consensus":"Gripping,
228
+ suspenseful, and brilliantly crafted, Zero Dark Thirty dramatizes the hunt
229
+ 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
230
+ Fresh","critics_score":94,"audience_rating":"Upright","audience_score":82},"synopsis":"For
231
+ a decade, an elite team of intelligence and military operatives, working in
232
+ secret across the globe, devoted themselves to a single goal: to find and
233
+ eliminate Osama bin Laden. Zero Dark Thirty reunites the Oscar winning team
234
+ of director-producer Kathryn Bigelow and writer-producer Mark Boal (The Hurt
235
+ Locker) for the story of history''s greatest manhunt for the world''s most
236
+ 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
237
+ Edgerton","id":"162733204","characters":["Patrick - Squadron Team Leader"]},{"name":"Jason
238
+ Clarke","id":"359854726","characters":["Dan"]},{"name":"Jessica Chastain","id":"770760183","characters":["Maya"]},{"name":"Kyle
239
+ Chandler","id":"770695318","characters":["Joseph Bradley"]},{"name":"Jennifer
240
+ 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":"771245718","title":"Django
241
+ Unchained","year":2012,"mpaa_rating":"R","runtime":166,"critics_consensus":"Bold,
242
+ bloody, and stylistically daring, Django Unchained is another incendiary masterpiece
243
+ from Quentin Tarantino.","release_dates":{"theater":"2012-12-25"},"ratings":{"critics_rating":"Certified
244
+ Fresh","critics_score":89,"audience_rating":"Upright","audience_score":94},"synopsis":"Set
245
+ in the South two years before the Civil War, Django Unchained stars Jamie
246
+ Foxx as Django, a slave whose brutal history with his former owners lands
247
+ him face-to-face with German-born bounty hunter Dr. King Schultz (Christoph
248
+ Waltz). Schultz is on the trail of the murderous Brittle brothers, and only
249
+ Django can lead him to his bounty. Honing vital hunting skills, Django remains
250
+ focused on one goal: finding and rescuing Broomhilda (Kerry Washington), the
251
+ wife he lost to the slave trade long ago. Django and Schultz''s search ultimately
252
+ leads them to Calvin Candie (Leonardo DiCaprio), the proprietor of \"Candyland,\"
253
+ an infamous plantation. Exploring the compound under false pretenses, Django
254
+ and Schultz arouse the suspicion of Stephen (Samuel L. Jackson), Candie''s
255
+ 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
256
+ Foxx","id":"162652975","characters":["Django"]},{"name":"Leonardo DiCaprio","id":"162659161","characters":["Calvin
257
+ Candie"]},{"name":"Christoph Waltz","id":"770738334","characters":["Dr. King
258
+ Schultz"]},{"name":"Samuel L. Jackson","id":"162652156","characters":["Stephen"]},{"name":"Walton
259
+ 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":"770673482","title":"Life
260
+ of Pi","year":2012,"mpaa_rating":"PG","runtime":127,"critics_consensus":"A
261
+ 3D adaptation of a supposedly \"unfilmable\" book, Ang Lee''s Life of Pi achieves
262
+ the near impossible -- it''s an astonishing technical achievement that''s
263
+ also emotionally rewarding.","release_dates":{"theater":"2012-11-21","dvd":"2013-03-12"},"ratings":{"critics_rating":"Certified
264
+ Fresh","critics_score":88,"audience_rating":"Upright","audience_score":87},"synopsis":"Director
265
+ Ang Lee creates a groundbreaking movie event about a young man who survives
266
+ a disaster at sea and is hurtled into an epic journey of adventure and discovery.
267
+ While cast away, he forms an amazing and unexpected connection with another
268
+ 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
269
+ Sharma","id":"771086290","characters":["Pi","Pi Patel","Piscine Militor Patel
270
+ - 17 years old","Young Pi Patel"]},{"name":"Irfan Khan","id":"280206663","characters":["Adult
271
+ Pi Patel","Piscine Militor Patel - Adult"]},{"name":"Ayush Tandon","id":"771428293","characters":["Piscine
272
+ Militor Patel - Child"]},{"name":"Tabu","id":"326391044","characters":["Gita
273
+ Patel"]},{"name":"Adil Hussain","id":"770864008","characters":["Pi''s Father","Santosh
274
+ 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":"770675766","title":"The
275
+ Hobbit: An Unexpected Journey","year":2012,"mpaa_rating":"PG-13","runtime":170,"critics_consensus":"Peter
276
+ Jackson''s return to Middle-earth is an earnest, visually resplendent trip,
277
+ 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
278
+ Hobbit: An Unexpected Journey follows title character Bilbo Baggins, who is
279
+ swept into an epic quest to reclaim the lost Dwarf Kingdom of Erebor, which
280
+ was long ago conquered by the dragon Smaug. Approached out of the blue by
281
+ the wizard Gandalf the Grey, Bilbo finds himself joining a company of thirteen
282
+ dwarves led by the legendary warrior Thorin Oakenshield. Although their goal
283
+ lies to the East and the wastelands of the Lonely Mountain, first they must
284
+ escape the goblin tunnels, where Bilbo meets the creature that will change
285
+ his life forever... Gollum. Here, alone with Gollum, on the shores of an underground
286
+ lake, the unassuming Bilbo Baggins not only discovers depths ofguile and courage
287
+ that surprise even him, he also gains possession of Gollum''s \"precious\"
288
+ ...a simple, gold ring that is tied to the fate of all Middle-earth in ways
289
+ 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
290
+ McKellen","id":"162653241","characters":["Gandalf"]},{"name":"Martin Freeman","id":"162652296","characters":["Bilbo","Bilbo
291
+ Baggins"]},{"name":"Richard Armitage","id":"546952855","characters":["Thorin","Thorin
292
+ Oakenshield"]},{"name":"Ken Stott","id":"407726897","characters":["Balin"]},{"name":"Graham
293
+ 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
294
+ Miserables","year":2012,"mpaa_rating":"PG-13","runtime":158,"critics_consensus":"Impeccably
295
+ mounted but occasionally bombastic, Les Miserables largely succeeds thanks
296
+ 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
297
+ against the backdrop of 19th-century France, Les Miserables tells an enthralling
298
+ story of broken dreams and unrequited love, passion, sacrifice and redemption-a
299
+ timeless testament to the survival of the human spirit. Jackman plays ex-prisoner
300
+ Jean Valjean, hunted for decades by the ruthless policeman Javert (Crowe)
301
+ after he breaks parole. When Valjean agrees to care for factory worker Fantine''s
302
+ (Hathaway) young daughter, Cosette, their lives change forever. In December
303
+ 2012, the world''s longest-running musical brings its power to the big screen
304
+ in Tom Hooper''s sweeping and spectacular interpretation of Victor Hugo''s
305
+ 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
306
+ Jackman","id":"162661503","characters":["Jean Valjean"]},{"name":"Russell
307
+ Crowe","id":"162652569","characters":["Inspector Javert","Javert"]},{"name":"Anne
308
+ Hathaway","id":"162656190","characters":["Fantine"]},{"name":"Amanda Seyfried","id":"364614826","characters":["Cosette"]},{"name":"Sacha
309
+ 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":"771257655","title":"Parental
310
+ Guidance","year":2012,"mpaa_rating":"PG","runtime":105,"critics_consensus":"Parental
311
+ Guidance is sweet but milquetoast, an inoffensive trifle that''s blandly predictable.","release_dates":{"theater":"2012-12-25","dvd":"2013-03-26"},"ratings":{"critics_rating":"Rotten","critics_score":19,"audience_rating":"Upright","audience_score":66},"synopsis":"Old
312
+ school grandfather Artie (Billy Crystal), who is accustomed to calling the
313
+ shots, meets his match when he and his eager-to-please wife Diane (Bette Midler)
314
+ agree to babysit their three grandkids when their type-A helicopter parents
315
+ (Marisa Tomei, Tom Everett Scott) go away for work. But when 21st century
316
+ problems collide with Artie and Diane''s old school methods of tough rules,
317
+ lots of love and old-fashioned games, it''s learning to bend - and not holding
318
+ your ground - that binds a family together","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/73/11167379_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/73/11167379_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/73/11167379_det.jpg","original":"http://content9.flixster.com/movie/11/16/73/11167379_ori.jpg"},"abridged_cast":[{"name":"Billy
319
+ Crystal","id":"162655707","characters":["Artie Decker"]},{"name":"Bette Midler","id":"162659059","characters":["Diane
320
+ Decker"]},{"name":"Marisa Tomei","id":"162662209","characters":["Alice","Alice
321
+ Simmons"]},{"name":"Tom Everett Scott","id":"162661411","characters":["Phil","Phil
322
+ Simmons"]},{"name":"Bailee Madison","id":"387371602","characters":["Harper","Harper
323
+ Simmons"]}],"alternate_ids":{"imdb":"1047540"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257655.json","alternate":"http://www.rottentomatoes.com/m/parental_guidance_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257655/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257655/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257655/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257655/similar.json"}},{"id":"771240423","title":"Parker","year":2013,"mpaa_rating":"R","runtime":118,"critics_consensus":"Jason
324
+ Statham is game as usual, but Parker is a thoroughly generic and convoluted
325
+ heist movie.","release_dates":{"theater":"2013-01-25","dvd":"2013-05-06"},"ratings":{"critics_rating":"Rotten","critics_score":38,"audience_rating":"Upright","audience_score":61},"synopsis":"Set
326
+ amidst the unparalleled wealth and glamor of Palm Beach, Jason Statham and
327
+ Jennifer Lopez team up to get their cut in the crime thriller PARKER based
328
+ on the series of bestselling novels by Donald E. Westlake. The film is directed
329
+ by Academy Award (R) nominee Taylor Hackford (Ray) and also stars Michael
330
+ Chiklis, Wendell Pierce (HBO''s The Wire) and Academy Award nominee Nick Nolte.
331
+ (c) Film District","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/71/11167133_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/71/11167133_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/71/11167133_det.jpg","original":"http://content7.flixster.com/movie/11/16/71/11167133_ori.jpg"},"abridged_cast":[{"name":"Jason
332
+ Statham","id":"162653720","characters":["Parker"]},{"name":"Jennifer Lopez","id":"162652167","characters":["Leslie
333
+ Rodgers"]},{"name":"Clifton Collins Jr.","id":"162654290","characters":["Ross"]},{"name":"Wendell
334
+ Pierce","id":"770678877","characters":["Carlson"]},{"name":"Michael Chiklis","id":"162652783","characters":["Melander"]}],"alternate_ids":{"imdb":"1904996"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240423.json","alternate":"http://www.rottentomatoes.com/m/parker_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240423/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240423/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240423/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771240423/similar.json"}},{"id":"771252547","title":"Bullet
335
+ to the Head","year":2013,"mpaa_rating":"R","runtime":91,"critics_consensus":"Bullet
336
+ to the Head''s unapologetically trashy thrills evoke memories of its star
337
+ and director''s proud cinematic pasts -- but sadly, those memories are just
338
+ about all it has to offer.","release_dates":{"theater":"2013-02-01"},"ratings":{"critics_rating":"Rotten","critics_score":48,"audience_rating":"Spilled","audience_score":58},"synopsis":"Based
339
+ on a graphic novel, Bullet to the Head tells the story of a New Orleans hitman
340
+ (Stallone) and a DC cop (Kang) who form an alliance to bring down the killers
341
+ of their respective partners. -- (C) Warner Bros","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/86/11168638_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/86/11168638_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/86/11168638_det.jpg","original":"http://content8.flixster.com/movie/11/16/86/11168638_ori.jpg"},"abridged_cast":[{"name":"Sylvester
342
+ Stallone","id":"162664630","characters":["James Bonomo","Jimmy Bobo"]},{"name":"Sung
343
+ Kang","id":"162707419","characters":["Taylor Kwon"]},{"name":"Sarah Shahi","id":"770780020","characters":["Lisa
344
+ Bobo","Lisa Bonomo"]},{"name":"Adewale Akinnuoye-Agbaje","id":"405589153","characters":["Morel","Robert
345
+ Nkomo Morel"]},{"name":"Jason Momoa","id":"448571481","characters":["Keegan"]}],"alternate_ids":{"imdb":"1308729"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252547.json","alternate":"http://www.rottentomatoes.com/m/bullet_to_the_head/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252547/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252547/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252547/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252547/similar.json"}},{"id":"771312396","title":"The
346
+ Impossible","year":2012,"mpaa_rating":"PG-13","runtime":107,"critics_consensus":"The
347
+ screenplay isn''t quite as powerful as the direction or the acting, but with
348
+ such an astonishing real-life story at its center, The Impossible is never
349
+ less than compelling.","release_dates":{"theater":"2012-12-21","dvd":"2013-04-23"},"ratings":{"critics_rating":"Certified
350
+ Fresh","critics_score":81,"audience_rating":"Upright","audience_score":85},"synopsis":"Maria,
351
+ Henry and their three sons begin their winter vacation in Thailand, looking
352
+ forward to a few days in tropical paradise. But on the morning of December
353
+ 26th, as the family relaxes around the pool after their Christmas festivities
354
+ the night before, a terrifying roar rises up from the center of the earth.
355
+ As Maria freezes in fear, a huge wall of black water races across the hotel
356
+ grounds toward her.","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/82/11168283_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/82/11168283_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/82/11168283_det.jpg","original":"http://content9.flixster.com/movie/11/16/82/11168283_ori.jpg"},"abridged_cast":[{"name":"Naomi
357
+ Watts","id":"162654749","characters":["Maria"]},{"name":"Ewan McGregor","id":"162652152","characters":["Henry"]},{"name":"Tom
358
+ Holland (X)","id":"771425934","characters":["Lucas"]}],"alternate_ids":{"imdb":"1649419"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771312396.json","alternate":"http://www.rottentomatoes.com/m/the_impossible_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771312396/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771312396/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771312396/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771312396/similar.json"}},{"id":"771229644","title":"Rise
359
+ of the Guardians","year":2012,"mpaa_rating":"PG","runtime":97,"critics_consensus":"A
360
+ sort of Avengers for the elementary school set, Rise of the Guardians is wonderfully
361
+ animated and briskly paced, but it''s only so-so in the storytelling department.","release_dates":{"theater":"2012-11-21","dvd":"2013-03-12"},"ratings":{"critics_rating":"Certified
362
+ Fresh","critics_score":74,"audience_rating":"Upright","audience_score":83},"synopsis":"Rise
363
+ of the Guardians is an epic adventure that tells the story of a group of heroes
364
+ - each with extraordinary abilities. When an evil spirit known as Pitch lays
365
+ down the gauntlet to take over the world, the immortal Guardians must join
366
+ forces for the first time to protect the hopes, beliefs and imagination of
367
+ children all over the world. -- (C) Official Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/71/11167106_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/71/11167106_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/71/11167106_det.jpg","original":"http://content8.flixster.com/movie/11/16/71/11167106_ori.jpg"},"abridged_cast":[{"name":"Alec
368
+ Baldwin","id":"162656441","characters":["North","North aka Santa Claus"]},{"name":"Hugh
369
+ Jackman","id":"162661503","characters":["Bunnymund","E. Aster Bunnymund aka
370
+ The Easter Bunny"]},{"name":"Isla Fisher","id":"162652839","characters":["Tooth","Tooth
371
+ aka The Tooth Fairy"]},{"name":"Chris Pine","id":"326393041","characters":["Jack
372
+ Frost"]},{"name":"Jude Law","id":"162659420","characters":["Pitch"]}],"alternate_ids":{"imdb":"1830790"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771229644.json","alternate":"http://www.rottentomatoes.com/m/rise_of_the_guardians_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771229644/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771229644/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771229644/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771229644/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/in_theaters.json?page_limit=20&country=us&page=1","next":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/in_theaters.json?page_limit=20&country=us&page=2","alternate":"http://www.rottentomatoes.com/movie/in_theaters.php"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/in_theaters.json?page_limit={results_per_page}&page={page_number}&country={country-code}"}
373
+
374
+
375
+
376
+
377
+ '
378
+ http_version:
379
+ recorded_at: Wed, 20 Feb 2013 15:31:50 GMT
380
+ recorded_with: VCR 2.4.0