marvel_api 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/.document +1 -1
  3. data/.rspec +2 -1
  4. data/.travis.yml +8 -0
  5. data/Gemfile +11 -4
  6. data/Guardfile +5 -0
  7. data/LICENSE.txt +1 -1
  8. data/README.md +16 -4
  9. data/Rakefile +11 -8
  10. data/lib/marvel/client.rb +6 -14
  11. data/lib/marvel/connection.rb +10 -2
  12. data/lib/marvel/error.rb +16 -0
  13. data/lib/marvel/request.rb +22 -8
  14. data/lib/marvel/response.rb +21 -0
  15. data/lib/marvel/version.rb +14 -0
  16. data/marvel_api.gemspec +75 -18
  17. data/spec/fixtures/characters/character.json +341 -0
  18. data/spec/fixtures/characters/character_comics.json +4975 -0
  19. data/spec/fixtures/characters/character_events.json +1666 -0
  20. data/spec/fixtures/characters/character_series.json +6117 -0
  21. data/spec/fixtures/characters/character_stories.json +1873 -0
  22. data/spec/fixtures/characters/characters.json +3006 -0
  23. data/spec/fixtures/comics/comic.json +359 -0
  24. data/spec/fixtures/comics/comic_characters.json +4649 -0
  25. data/spec/fixtures/comics/comic_creators.json +4387 -0
  26. data/spec/fixtures/comics/comic_events.json +522 -0
  27. data/spec/fixtures/comics/comic_stories.json +1985 -0
  28. data/spec/fixtures/comics/comics.json +2246 -0
  29. data/spec/fixtures/creators/creator.json +340 -0
  30. data/spec/fixtures/creators/creator_comics.json +2856 -0
  31. data/spec/fixtures/creators/creator_events.json +1899 -0
  32. data/spec/fixtures/creators/creator_series.json +4686 -0
  33. data/spec/fixtures/creators/creator_stories.json +1491 -0
  34. data/spec/fixtures/creators/creators.json +1376 -0
  35. data/spec/fixtures/errors/empty_parameter.json +4 -0
  36. data/spec/fixtures/errors/excessive_filter_values.json +4 -0
  37. data/spec/fixtures/errors/invalid_credentials.json +4 -0
  38. data/spec/fixtures/errors/invalid_filter_value.json +4 -0
  39. data/spec/fixtures/errors/invalid_hash_ts_key_combo.json +4 -0
  40. data/spec/fixtures/errors/invalid_ordering.json +4 -0
  41. data/spec/fixtures/errors/invalid_parameter.json +4 -0
  42. data/spec/fixtures/errors/limit_invalid.json +4 -0
  43. data/spec/fixtures/errors/limit_over_100.json +4 -0
  44. data/spec/fixtures/errors/resource_not_found.json +4 -0
  45. data/spec/fixtures/events/event.json +522 -0
  46. data/spec/fixtures/events/event_characters.json +6397 -0
  47. data/spec/fixtures/events/event_comics.json +4718 -0
  48. data/spec/fixtures/events/event_creators.json +5869 -0
  49. data/spec/fixtures/events/event_series.json +2243 -0
  50. data/spec/fixtures/events/event_stories.json +4846 -0
  51. data/spec/fixtures/events/events.json +8613 -0
  52. data/spec/fixtures/series/serie.json +448 -0
  53. data/spec/fixtures/series/series.json +3464 -0
  54. data/spec/fixtures/series/series_characters.json +6029 -0
  55. data/spec/fixtures/series/series_comics.json +2935 -0
  56. data/spec/fixtures/series/series_creators.json +5923 -0
  57. data/spec/fixtures/series/series_events.json +944 -0
  58. data/spec/fixtures/series/series_stories.json +1544 -0
  59. data/spec/fixtures/stories/stories.json +1282 -0
  60. data/spec/fixtures/stories/story.json +117 -0
  61. data/spec/fixtures/stories/story_characters.json +794 -0
  62. data/spec/fixtures/stories/story_comics.json +522 -0
  63. data/spec/fixtures/stories/story_creators.json +1672 -0
  64. data/spec/fixtures/stories/story_events.json +522 -0
  65. data/spec/fixtures/stories/story_series.json +695 -0
  66. data/spec/marvel_api/client/client_character_spec.rb +142 -0
  67. data/spec/marvel_api/client/client_comic_spec.rb +141 -0
  68. data/spec/marvel_api/client/client_creator_spec.rb +139 -0
  69. data/spec/marvel_api/client/client_event_spec.rb +163 -0
  70. data/spec/marvel_api/client/client_series_spec.rb +165 -0
  71. data/spec/marvel_api/client/client_story_spec.rb +162 -0
  72. data/spec/marvel_api/error_spec.rb +192 -0
  73. data/spec/marvel_api_spec.rb +15 -3
  74. data/spec/spec_helper.rb +55 -4
  75. metadata +83 -27
  76. data/VERSION +0 -1
  77. data/spec/marvel_api/client_spec.rb +0 -7
@@ -0,0 +1,340 @@
1
+ {
2
+ "code": 200,
3
+ "status": "Ok",
4
+ "copyright": "© 2014 MARVEL",
5
+ "attributionText": "Data provided by Marvel. © 2014 MARVEL",
6
+ "attributionHTML": "<a href=\"http://marvel.com\">Data provided by Marvel. © 2014 MARVEL</a>",
7
+ "etag": "40427ea9136ff0ad70c4899794685f22cd2e720b",
8
+ "data": {
9
+ "offset": 0,
10
+ "limit": 20,
11
+ "total": 1,
12
+ "count": 1,
13
+ "results": [
14
+ {
15
+ "id": 30,
16
+ "firstName": "Stan",
17
+ "middleName": "",
18
+ "lastName": "Lee",
19
+ "suffix": "",
20
+ "fullName": "Stan Lee",
21
+ "modified": "2014-05-02T14:54:58-0400",
22
+ "thumbnail": {
23
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/d0/4bc37d9d8f541",
24
+ "extension": "jpg"
25
+ },
26
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
27
+ "comics": {
28
+ "available": 2948,
29
+ "collectionURI": "http://gateway.marvel.com/v1/public/creators/30/comics",
30
+ "items": [
31
+ {
32
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/4455",
33
+ "name": "All-New Official Handbook of the Marvel Universe a to Z (2006) #7"
34
+ },
35
+ {
36
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/5373",
37
+ "name": "All-New Official Handbook of the Marvel Universe a to Z (2006) #11"
38
+ },
39
+ {
40
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/6325",
41
+ "name": "All-New Official Handbook of the Marvel Universe a to Z: Update (2007) #2"
42
+ },
43
+ {
44
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12555",
45
+ "name": "All-Winners Comics (1941) #1"
46
+ },
47
+ {
48
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12566",
49
+ "name": "All-Winners Comics (1941) #2"
50
+ },
51
+ {
52
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12568",
53
+ "name": "All-Winners Comics (1941) #3"
54
+ },
55
+ {
56
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12569",
57
+ "name": "All-Winners Comics (1941) #4"
58
+ },
59
+ {
60
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12563",
61
+ "name": "All-Winners Comics (1941) #17"
62
+ },
63
+ {
64
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12564",
65
+ "name": "All-Winners Comics (1941) #18"
66
+ },
67
+ {
68
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12565",
69
+ "name": "All-Winners Comics (1941) #19"
70
+ },
71
+ {
72
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/12567",
73
+ "name": "All-Winners Comics (1941) #21"
74
+ },
75
+ {
76
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17722",
77
+ "name": "Amazing Adult Fantasy (1961) #7"
78
+ },
79
+ {
80
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17723",
81
+ "name": "Amazing Adult Fantasy (1961) #8"
82
+ },
83
+ {
84
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17724",
85
+ "name": "Amazing Adult Fantasy (1961) #9"
86
+ },
87
+ {
88
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17717",
89
+ "name": "Amazing Adult Fantasy (1961) #10"
90
+ },
91
+ {
92
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17718",
93
+ "name": "Amazing Adult Fantasy (1961) #11"
94
+ },
95
+ {
96
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17719",
97
+ "name": "Amazing Adult Fantasy (1961) #12"
98
+ },
99
+ {
100
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17720",
101
+ "name": "Amazing Adult Fantasy (1961) #13"
102
+ },
103
+ {
104
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/17721",
105
+ "name": "Amazing Adult Fantasy (1961) #14"
106
+ },
107
+ {
108
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/23245",
109
+ "name": "Amazing Adventures (1970) #1"
110
+ }
111
+ ],
112
+ "returned": 20
113
+ },
114
+ "series": {
115
+ "available": 619,
116
+ "collectionURI": "http://gateway.marvel.com/v1/public/creators/30/series",
117
+ "items": [
118
+ {
119
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1023",
120
+ "name": "All-New Official Handbook of the Marvel Universe a to Z (2006)"
121
+ },
122
+ {
123
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1147",
124
+ "name": "All-New Official Handbook of the Marvel Universe a to Z: Update (2007)"
125
+ },
126
+ {
127
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/2114",
128
+ "name": "All-Winners Comics (1941 - 1947)"
129
+ },
130
+ {
131
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/3616",
132
+ "name": "Amazing Adult Fantasy (1961 - 1962)"
133
+ },
134
+ {
135
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/6666",
136
+ "name": "Amazing Adventures (1970 - 1976)"
137
+ },
138
+ {
139
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/3617",
140
+ "name": "Amazing Adventures (1961)"
141
+ },
142
+ {
143
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/2987",
144
+ "name": "Amazing Fantasy (1962)"
145
+ },
146
+ {
147
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/15280",
148
+ "name": "Amazing Fantasy 15: Spider-Man! (2011 - 2012)"
149
+ },
150
+ {
151
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/2707",
152
+ "name": "Amazing Fantasy Omnibus (2007)"
153
+ },
154
+ {
155
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1987",
156
+ "name": "Amazing Spider-Man (1963 - 1998)"
157
+ },
158
+ {
159
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/454",
160
+ "name": "Amazing Spider-Man (1999 - 2013)"
161
+ },
162
+ {
163
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/2984",
164
+ "name": "Amazing Spider-Man Annual (1964 - Present)"
165
+ },
166
+ {
167
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18084",
168
+ "name": "Amazing Spider-Man Epic Collection: Cosmic Adventures (2013)"
169
+ },
170
+ {
171
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18316",
172
+ "name": "Amazing Spider-Man Epic Collection: Ghosts of the Past (2014)"
173
+ },
174
+ {
175
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1967",
176
+ "name": "Amazing Spider-Man Omnibus Vol. 1 (2007)"
177
+ },
178
+ {
179
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1970",
180
+ "name": "Amazing Spider-Man Omnibus Vol. 1 (Book Market (2007)"
181
+ },
182
+ {
183
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1489",
184
+ "name": "Amazing Spider-Man Vol. 10: New Avengers (2005)"
185
+ },
186
+ {
187
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/318",
188
+ "name": "Amazing Spider-Man Vol. 6 (2004)"
189
+ },
190
+ {
191
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1292",
192
+ "name": "Amazing Spider-Man Vol. 7: The Book of Ezekiel (2005)"
193
+ },
194
+ {
195
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/1291",
196
+ "name": "Amazing Spider-Man Vol. 7: The Book of Ezekiel (2004)"
197
+ }
198
+ ],
199
+ "returned": 20
200
+ },
201
+ "stories": {
202
+ "available": 8162,
203
+ "collectionURI": "http://gateway.marvel.com/v1/public/creators/30/stories",
204
+ "items": [
205
+ {
206
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/29",
207
+ "name": "Caught in the heart of a nuclear explosion, mild-mannered scientist Bruce Banner finds himself ر during moments of extreme stres",
208
+ "type": "interiorStory"
209
+ },
210
+ {
211
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/31",
212
+ "name": "Featuring the birth of an unlikely hero and the early adventures that paved the way for the mega-popular media icon that Spider-",
213
+ "type": "interiorStory"
214
+ },
215
+ {
216
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/32",
217
+ "name": "Spider-Man's earliest adventures continue with classic stories featuring the Vulture, Dr. Octopus, Mysterio and the Shocker.",
218
+ "type": "interiorStory"
219
+ },
220
+ {
221
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/33",
222
+ "name": "In this volume, Peter faces some of his greatest challenges and his most harrowing foes such as Doc Ock and the Kingpin. Featuri",
223
+ "type": "interiorStory"
224
+ },
225
+ {
226
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/34",
227
+ "name": "Spider-Man's earliest adventures continue with tales to surprise and delight. Appearances by Iceman, Morbius, the Prowler, Green",
228
+ "type": "interiorStory"
229
+ },
230
+ {
231
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/35",
232
+ "name": "Telepathic teacher Charles Xavier assembles his first recruits ر Cyclops, Angel, Iceman, Beast and Marvel Girl ر and trains them",
233
+ "type": "interiorStory"
234
+ },
235
+ {
236
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/43",
237
+ "name": "Presenting the first adventures of Spider-Man, Wolverine, Daredevil, the Hulk, the Fantastic Four and other Marvel icons.",
238
+ "type": "interiorStory"
239
+ },
240
+ {
241
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/44",
242
+ "name": "One-eyed war-horse Nick Fury isn't quite ready to retire ر and when it all hits the fan, S.H.I.E.L.D. realizes that there's onl",
243
+ "type": "interiorStory"
244
+ },
245
+ {
246
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/58",
247
+ "name": "Nick Fury finds himself at odds with the covert company he's run for many years ر or thought he's run.",
248
+ "type": "interiorStory"
249
+ },
250
+ {
251
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/63",
252
+ "name": "Two unlucky cops draw the unenviable task of capturing the Punisher, while the ruthless Ma Gnucci and her gang will stop at noth",
253
+ "type": "interiorStory"
254
+ },
255
+ {
256
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/64",
257
+ "name": "Following a team-up with Spider-Man, the Punisher heads to the remote scrap of dirt known as Grand Nixon Island to take down an ",
258
+ "type": "interiorStory"
259
+ },
260
+ {
261
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/71",
262
+ "name": "In this shocking and moving story, the Green Goblin and Spider-Man face off atop the George Washington Bridge, with Gwen's life ",
263
+ "type": "interiorStory"
264
+ },
265
+ {
266
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/72",
267
+ "name": "Tormented by his unstoppable alter ego, Bruce Banner has nowhere to hide. Having located the man-like monstrosity that is the Hu",
268
+ "type": "interiorStory"
269
+ },
270
+ {
271
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107",
272
+ "name": "This collection gathers the team-ups and battles between Spider-Man and Superman, the Hulk and Batman, and the X-Men and the New",
273
+ "type": "interiorStory"
274
+ },
275
+ {
276
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108",
277
+ "name": "Featuring team-ups and battles between Hulk and Superman, Generation X and Gen 13, Team X and Team 7, Daredevil and Batman, and ",
278
+ "type": "interiorStory"
279
+ },
280
+ {
281
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/115",
282
+ "name": "Re-presenting the formation of the Avengers, the revival of Captain America, enemies such as the Sub-Mariner, and Kang the Conqu",
283
+ "type": "interiorStory"
284
+ },
285
+ {
286
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/150",
287
+ "name": "Hope ر it's the one thing Proessor X offers to troubled mutants cast out from human society. But while they heal from their late",
288
+ "type": "interiorStory"
289
+ },
290
+ {
291
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/186",
292
+ "name": "New Printing in time for the movie!\r\nCaught in the heart of a nuclear explosion, mild-mannered scientist Bruce Banner finds hims",
293
+ "type": "interiorStory"
294
+ },
295
+ {
296
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/188",
297
+ "name": "New Printing in time for the movie!\r\nThe second volume containing the Hulk’s early adventures with appearances by the Sub-Marine",
298
+ "type": "interiorStory"
299
+ },
300
+ {
301
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/207",
302
+ "name": "This remastered edition collects the first-ever full reprinting of THE FANTASTIC FOUR (Vol. 1) #1-10, including never-before rep",
303
+ "type": "interiorStory"
304
+ }
305
+ ],
306
+ "returned": 20
307
+ },
308
+ "events": {
309
+ "available": 4,
310
+ "collectionURI": "http://gateway.marvel.com/v1/public/creators/30/events",
311
+ "items": [
312
+ {
313
+ "resourceURI": "http://gateway.marvel.com/v1/public/events/238",
314
+ "name": "Civil War"
315
+ },
316
+ {
317
+ "resourceURI": "http://gateway.marvel.com/v1/public/events/251",
318
+ "name": "House of M"
319
+ },
320
+ {
321
+ "resourceURI": "http://gateway.marvel.com/v1/public/events/266",
322
+ "name": "Other - Evolve or Die"
323
+ },
324
+ {
325
+ "resourceURI": "http://gateway.marvel.com/v1/public/events/269",
326
+ "name": "Secret Invasion"
327
+ }
328
+ ],
329
+ "returned": 4
330
+ },
331
+ "urls": [
332
+ {
333
+ "type": "detail",
334
+ "url": "http://marvel.com/comics/creators/30/stan_lee?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
335
+ }
336
+ ]
337
+ }
338
+ ]
339
+ }
340
+ }
@@ -0,0 +1,2856 @@
1
+ {
2
+ "code": 200,
3
+ "status": "Ok",
4
+ "copyright": "© 2014 MARVEL",
5
+ "attributionText": "Data provided by Marvel. © 2014 MARVEL",
6
+ "attributionHTML": "<a href=\"http://marvel.com\">Data provided by Marvel. © 2014 MARVEL</a>",
7
+ "etag": "d2730dd18067ad9c356294c527a6d54b2380df48",
8
+ "data": {
9
+ "offset": 0,
10
+ "limit": 20,
11
+ "total": 2948,
12
+ "count": 20,
13
+ "results": [
14
+ {
15
+ "id": 48073,
16
+ "digitalId": 0,
17
+ "title": "Marvel Masterworks: The Invincible Iron Man (Trade Paperback)",
18
+ "issueNumber": 0,
19
+ "variantDescription": "",
20
+ "description": "The Iron Avenger returns, courtesy of Stan the Man and the Dynamo of Delineation, Don Heck! The men who “built” Tony Stark pit our hero against the undersea menace Attuma, the Dream-Maker and the Titanium Man in classics without compare! Then, after defining the series for nearly 30 issues, Don Heck passes the pencil to Gene “the Dean” Colan, whose lush illustrations take Iron Man to spectacular new heights! Colan and Lee plow straight into a who’s who of villains when the Mandarin returns, Ultimo attacks, and Iron Man goes toe-to-toe with Namor the Sub-Mariner in one of Marveldom’s earliest crossover epics! Collecting TALES OF SUSPENSE #66-83 and TALES TO ASTONISH (1959) #82.",
21
+ "modified": "2014-05-19T15:49:36-0400",
22
+ "isbn": "978-0-7851-8844-5",
23
+ "upc": "",
24
+ "diamondCode": "",
25
+ "ean": "9780785 188445 52499",
26
+ "issn": "",
27
+ "format": "Trade Paperback",
28
+ "pageCount": 264,
29
+ "textObjects": [
30
+ {
31
+ "type": "issue_solicit_text",
32
+ "language": "en-us",
33
+ "text": "The Iron Avenger returns, courtesy of Stan the Man and the Dynamo of Delineation, Don Heck! The men who “built” Tony Stark pit our hero against the undersea menace Attuma, the Dream-Maker and the Titanium Man in classics without compare! Then, after defining the series for nearly 30 issues, Don Heck passes the pencil to Gene “the Dean” Colan, whose lush illustrations take Iron Man to spectacular new heights! Colan and Lee plow straight into a who’s who of villains when the Mandarin returns, Ultimo attacks, and Iron Man goes toe-to-toe with Namor the Sub-Mariner in one of Marveldom’s earliest crossover epics! Collecting TALES OF SUSPENSE #66-83 and TALES TO ASTONISH (1959) #82."
34
+ }
35
+ ],
36
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48073",
37
+ "urls": [
38
+ {
39
+ "type": "detail",
40
+ "url": "http://marvel.com/comics/collection/48073/marvel_masterworks_the_invincible_iron_man_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
41
+ }
42
+ ],
43
+ "series": {
44
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18164",
45
+ "name": "Marvel Masterworks: The Invincible Iron Man (2014)"
46
+ },
47
+ "variants": [
48
+
49
+ ],
50
+ "collections": [
51
+
52
+ ],
53
+ "collectedIssues": [
54
+
55
+ ],
56
+ "dates": [
57
+ {
58
+ "type": "onsaleDate",
59
+ "date": "2014-05-28T00:00:00-0400"
60
+ },
61
+ {
62
+ "type": "focDate",
63
+ "date": "2014-05-13T00:00:00-0400"
64
+ }
65
+ ],
66
+ "prices": [
67
+ {
68
+ "type": "printPrice",
69
+ "price": 24.99
70
+ }
71
+ ],
72
+ "thumbnail": {
73
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/f0/537a5ed72837e",
74
+ "extension": "jpg"
75
+ },
76
+ "images": [
77
+ {
78
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/f0/537a5ed72837e",
79
+ "extension": "jpg"
80
+ }
81
+ ],
82
+ "creators": {
83
+ "available": 5,
84
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48073/creators",
85
+ "items": [
86
+ {
87
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/270",
88
+ "name": "Gene Colan",
89
+ "role": "artist"
90
+ },
91
+ {
92
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/305",
93
+ "name": "Don Heck",
94
+ "role": "artist"
95
+ },
96
+ {
97
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
98
+ "name": "Richard Isanove",
99
+ "role": "penciller (cover)"
100
+ },
101
+ {
102
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
103
+ "name": "Jack Kirby",
104
+ "role": "penciller (cover)"
105
+ },
106
+ {
107
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
108
+ "name": "Stan Lee",
109
+ "role": "writer"
110
+ }
111
+ ],
112
+ "returned": 5
113
+ },
114
+ "characters": {
115
+ "available": 0,
116
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48073/characters",
117
+ "items": [
118
+
119
+ ],
120
+ "returned": 0
121
+ },
122
+ "stories": {
123
+ "available": 2,
124
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48073/stories",
125
+ "items": [
126
+ {
127
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108363",
128
+ "name": "cover from Marvel Masterworks: The Invincible Iron Man (2014)",
129
+ "type": "cover"
130
+ },
131
+ {
132
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108364",
133
+ "name": "story from Marvel Masterworks: The Invincible Iron Man (2014)",
134
+ "type": "interiorStory"
135
+ }
136
+ ],
137
+ "returned": 2
138
+ },
139
+ "events": {
140
+ "available": 0,
141
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48073/events",
142
+ "items": [
143
+
144
+ ],
145
+ "returned": 0
146
+ }
147
+ },
148
+ {
149
+ "id": 48072,
150
+ "digitalId": 0,
151
+ "title": "Marvel Masterworks: The Invincible Iron Man (Trade Paperback)",
152
+ "issueNumber": 0,
153
+ "variantDescription": "",
154
+ "description": "The Iron Avenger returns, courtesy of Stan the Man and the Dynamo of Delineation, Don Heck! The men who “built” Tony Stark pit our hero against the undersea menace Attuma, the Dream-Maker and the Titanium Man in classics without compare! Then, after defining the series for nearly 30 issues, Don Heck passes the pencil to Gene “the Dean” Colan, whose lush illustrations take Iron Man to spectacular new heights! Colan and Lee plow straight into a who’s who of villains when the Mandarin returns, Ultimo attacks, and Iron Man goes toe-to-toe with Namor the Sub-Mariner in one of Marveldom’s earliest crossover epics! Collecting TALES OF SUSPENSE #66-83 and TALES TO ASTONISH (1959) #82.",
155
+ "modified": "2014-05-19T15:35:30-0400",
156
+ "isbn": "978-0-7851-8843-8",
157
+ "upc": "",
158
+ "diamondCode": "",
159
+ "ean": "9780785 188438 52499",
160
+ "issn": "",
161
+ "format": "Trade Paperback",
162
+ "pageCount": 264,
163
+ "textObjects": [
164
+ {
165
+ "type": "issue_solicit_text",
166
+ "language": "en-us",
167
+ "text": "The Iron Avenger returns, courtesy of Stan the Man and the Dynamo of Delineation, Don Heck! The men who “built” Tony Stark pit our hero against the undersea menace Attuma, the Dream-Maker and the Titanium Man in classics without compare! Then, after defining the series for nearly 30 issues, Don Heck passes the pencil to Gene “the Dean” Colan, whose lush illustrations take Iron Man to spectacular new heights! Colan and Lee plow straight into a who’s who of villains when the Mandarin returns, Ultimo attacks, and Iron Man goes toe-to-toe with Namor the Sub-Mariner in one of Marveldom’s earliest crossover epics! Collecting TALES OF SUSPENSE #66-83 and TALES TO ASTONISH (1959) #82."
168
+ }
169
+ ],
170
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48072",
171
+ "urls": [
172
+ {
173
+ "type": "detail",
174
+ "url": "http://marvel.com/comics/collection/48072/marvel_masterworks_the_invincible_iron_man_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
175
+ }
176
+ ],
177
+ "series": {
178
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18163",
179
+ "name": "Marvel Masterworks: The Invincible Iron Man (2014)"
180
+ },
181
+ "variants": [
182
+
183
+ ],
184
+ "collections": [
185
+
186
+ ],
187
+ "collectedIssues": [
188
+
189
+ ],
190
+ "dates": [
191
+ {
192
+ "type": "onsaleDate",
193
+ "date": "2014-05-28T00:00:00-0400"
194
+ },
195
+ {
196
+ "type": "focDate",
197
+ "date": "2014-05-13T00:00:00-0400"
198
+ }
199
+ ],
200
+ "prices": [
201
+ {
202
+ "type": "printPrice",
203
+ "price": 24.99
204
+ }
205
+ ],
206
+ "thumbnail": {
207
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/a0/537a5ac733289",
208
+ "extension": "jpg"
209
+ },
210
+ "images": [
211
+ {
212
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/a0/537a5ac733289",
213
+ "extension": "jpg"
214
+ }
215
+ ],
216
+ "creators": {
217
+ "available": 5,
218
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48072/creators",
219
+ "items": [
220
+ {
221
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/270",
222
+ "name": "Gene Colan",
223
+ "role": "artist"
224
+ },
225
+ {
226
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/305",
227
+ "name": "Don Heck",
228
+ "role": "artist"
229
+ },
230
+ {
231
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
232
+ "name": "Richard Isanove",
233
+ "role": "penciller (cover)"
234
+ },
235
+ {
236
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
237
+ "name": "Jack Kirby",
238
+ "role": "penciller (cover)"
239
+ },
240
+ {
241
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
242
+ "name": "Stan Lee",
243
+ "role": "writer"
244
+ }
245
+ ],
246
+ "returned": 5
247
+ },
248
+ "characters": {
249
+ "available": 0,
250
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48072/characters",
251
+ "items": [
252
+
253
+ ],
254
+ "returned": 0
255
+ },
256
+ "stories": {
257
+ "available": 2,
258
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48072/stories",
259
+ "items": [
260
+ {
261
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108361",
262
+ "name": "cover from Marvel Masterworks: The Invincible Iron Man (2014)",
263
+ "type": "cover"
264
+ },
265
+ {
266
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108362",
267
+ "name": "story from Marvel Masterworks: The Invincible Iron Man (2014)",
268
+ "type": "interiorStory"
269
+ }
270
+ ],
271
+ "returned": 2
272
+ },
273
+ "events": {
274
+ "available": 0,
275
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48072/events",
276
+ "items": [
277
+
278
+ ],
279
+ "returned": 0
280
+ }
281
+ },
282
+ {
283
+ "id": 48377,
284
+ "digitalId": 0,
285
+ "title": "Amazing Spider-Man Epic Collection: Ghosts of the Past (Trade Paperback)",
286
+ "issueNumber": 0,
287
+ "variantDescription": "",
288
+ "description": "The Hobgoblin is back! The high-flying villain is after Norman Osborn’s journals — and he’s targeted Mary Jane and the pregnant Liz Osborn! Plus: Mary Jane reveals the secrets of her childhood! The Scorpion attacks as J. Jonah Jameson ties the knot! Spidey battles the symbiotic alien costume in a senses-shattering showdown! The Kingpin strikes after the Beyonder turns a skyscraper to gold! Spidey faces the cosmic power of Firelord! The new Spider-Slayer attacks the person he believes to be Spider-Man: Mary Jane! And things get downright silly when Spidey must deal with Spider-Kid, Frog-Man and the Toad, and track a thief to…the suburbs! Featuring the return of Black Fox and Crusher Hogan, and the debuts of Silver Sable and Slyde! Collecting AMAZING SPIDER-MAN (1963) #259-272 and ANNUAL #18-19, and WEB OF SPIDER-MAN (1985) #1 and #6.",
289
+ "modified": "2014-05-13T17:19:09-0400",
290
+ "isbn": "978-0-7851-8916-9",
291
+ "upc": "",
292
+ "diamondCode": "",
293
+ "ean": "9780785 189169 53499",
294
+ "issn": "",
295
+ "format": "Trade Paperback",
296
+ "pageCount": 472,
297
+ "textObjects": [
298
+ {
299
+ "type": "issue_solicit_text",
300
+ "language": "en-us",
301
+ "text": "The Hobgoblin is back! The high-flying villain is after Norman Osborn’s journals — and he’s targeted Mary Jane and the pregnant Liz Osborn! Plus: Mary Jane reveals the secrets of her childhood! The Scorpion attacks as J. Jonah Jameson ties the knot! Spidey battles the symbiotic alien costume in a senses-shattering showdown! The Kingpin strikes after the Beyonder turns a skyscraper to gold! Spidey faces the cosmic power of Firelord! The new Spider-Slayer attacks the person he believes to be Spider-Man: Mary Jane! And things get downright silly when Spidey must deal with Spider-Kid, Frog-Man and the Toad, and track a thief to…the suburbs! Featuring the return of Black Fox and Crusher Hogan, and the debuts of Silver Sable and Slyde! Collecting AMAZING SPIDER-MAN (1963) #259-272 and ANNUAL #18-19, and WEB OF SPIDER-MAN (1985) #1 and #6."
302
+ }
303
+ ],
304
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48377",
305
+ "urls": [
306
+ {
307
+ "type": "detail",
308
+ "url": "http://marvel.com/comics/collection/48377/amazing_spider-man_epic_collection_ghosts_of_the_past_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
309
+ }
310
+ ],
311
+ "series": {
312
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18316",
313
+ "name": "Amazing Spider-Man Epic Collection: Ghosts of the Past (2014)"
314
+ },
315
+ "variants": [
316
+
317
+ ],
318
+ "collections": [
319
+
320
+ ],
321
+ "collectedIssues": [
322
+
323
+ ],
324
+ "dates": [
325
+ {
326
+ "type": "onsaleDate",
327
+ "date": "2014-05-21T00:00:00-0400"
328
+ },
329
+ {
330
+ "type": "focDate",
331
+ "date": "2014-05-06T00:00:00-0400"
332
+ }
333
+ ],
334
+ "prices": [
335
+ {
336
+ "type": "printPrice",
337
+ "price": 34.99
338
+ }
339
+ ],
340
+ "thumbnail": {
341
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/0/03/53728a1063e15",
342
+ "extension": "jpg"
343
+ },
344
+ "images": [
345
+ {
346
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/0/03/53728a1063e15",
347
+ "extension": "jpg"
348
+ }
349
+ ],
350
+ "creators": {
351
+ "available": 13,
352
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48377/creators",
353
+ "items": [
354
+ {
355
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/105",
356
+ "name": "Sal Buscema",
357
+ "role": "artist"
358
+ },
359
+ {
360
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2048",
361
+ "name": "Paty Cockrum",
362
+ "role": "artist"
363
+ },
364
+ {
365
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2059",
366
+ "name": "Mike Harris",
367
+ "role": "artist"
368
+ },
369
+ {
370
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1353",
371
+ "name": "Greg Larocque",
372
+ "role": "artist"
373
+ },
374
+ {
375
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1247",
376
+ "name": "Bob Layton",
377
+ "role": "artist"
378
+ },
379
+ {
380
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/8125",
381
+ "name": "Bob McLeod",
382
+ "role": "artist"
383
+ },
384
+ {
385
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1322",
386
+ "name": "Mary Wilshire",
387
+ "role": "artist"
388
+ },
389
+ {
390
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/121",
391
+ "name": "Peter David",
392
+ "role": "writer"
393
+ },
394
+ {
395
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9565",
396
+ "name": "Tom DeFalco",
397
+ "role": "writer"
398
+ },
399
+ {
400
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1918",
401
+ "name": "Danny Fingeroth",
402
+ "role": "writer"
403
+ },
404
+ {
405
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
406
+ "name": "Stan Lee",
407
+ "role": "writer"
408
+ },
409
+ {
410
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/184",
411
+ "name": "Louise Simonson",
412
+ "role": "writer"
413
+ },
414
+ {
415
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/5764",
416
+ "name": "Ron Frenz",
417
+ "role": "penciller (cover)"
418
+ }
419
+ ],
420
+ "returned": 13
421
+ },
422
+ "characters": {
423
+ "available": 0,
424
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48377/characters",
425
+ "items": [
426
+
427
+ ],
428
+ "returned": 0
429
+ },
430
+ "stories": {
431
+ "available": 2,
432
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48377/stories",
433
+ "items": [
434
+ {
435
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108897",
436
+ "name": "cover from Amazing Spider-Man Epic Collection: Ghosts of the Past (2014)",
437
+ "type": "cover"
438
+ },
439
+ {
440
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108898",
441
+ "name": "story from Amazing Spider-Man Epic Collection: Ghosts of the Past (2014)",
442
+ "type": "interiorStory"
443
+ }
444
+ ],
445
+ "returned": 2
446
+ },
447
+ "events": {
448
+ "available": 0,
449
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48377/events",
450
+ "items": [
451
+
452
+ ],
453
+ "returned": 0
454
+ }
455
+ },
456
+ {
457
+ "id": 47928,
458
+ "digitalId": 0,
459
+ "title": "Marvel Masterworks: Captain America (Trade Paperback)",
460
+ "issueNumber": 0,
461
+ "variantDescription": "",
462
+ "description": "The MARVEL MASTERWORKS proudly unfurl one of the greatest runs in Marvel history: Stan Lee, Jack Kirby and Jim Steranko’s CAPTAIN AMERICA! We begin with the Red Skull in a plot that forces Cap to do his nemesis’ bidding or risk America’s nuclear annihilation! Its Kirby action at its best with Batroc the Leaper and the Trapster, and Lee drama at its deepest as Cap relives his first meeting with — and the death of — Bucky Barnes. Last, but most certainly not least, comes Jim Steranko! The master of the medium will take you on a ride like none other with Cap vs. the Hulk, the return of Bucky and…the death of Captain America! Collecting CAPTAIN AMERICA (1968) #101-113.",
463
+ "modified": "2014-04-24T14:56:28-0400",
464
+ "isbn": "978-0-7851-8803-2",
465
+ "upc": "",
466
+ "diamondCode": "",
467
+ "ean": "9780785 188032 52499",
468
+ "issn": "",
469
+ "format": "Trade Paperback",
470
+ "pageCount": 296,
471
+ "textObjects": [
472
+ {
473
+ "type": "issue_solicit_text",
474
+ "language": "en-us",
475
+ "text": "The MARVEL MASTERWORKS proudly unfurl one of the greatest runs in Marvel history: Stan Lee, Jack Kirby and Jim Steranko’s CAPTAIN AMERICA! We begin with the Red Skull in a plot that forces Cap to do his nemesis’ bidding or risk America’s nuclear annihilation! Its Kirby action at its best with Batroc the Leaper and the Trapster, and Lee drama at its deepest as Cap relives his first meeting with — and the death of — Bucky Barnes. Last, but most certainly not least, comes Jim Steranko! The master of the medium will take you on a ride like none other with Cap vs. the Hulk, the return of Bucky and…the death of Captain America! Collecting CAPTAIN AMERICA (1968) #101-113."
476
+ }
477
+ ],
478
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47928",
479
+ "urls": [
480
+ {
481
+ "type": "detail",
482
+ "url": "http://marvel.com/comics/collection/47928/marvel_masterworks_captain_america_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
483
+ }
484
+ ],
485
+ "series": {
486
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18106",
487
+ "name": "Marvel Masterworks: Captain America (2014)"
488
+ },
489
+ "variants": [
490
+
491
+ ],
492
+ "collections": [
493
+
494
+ ],
495
+ "collectedIssues": [
496
+
497
+ ],
498
+ "dates": [
499
+ {
500
+ "type": "onsaleDate",
501
+ "date": "2014-04-30T00:00:00-0400"
502
+ },
503
+ {
504
+ "type": "focDate",
505
+ "date": "2014-04-15T00:00:00-0400"
506
+ }
507
+ ],
508
+ "prices": [
509
+ {
510
+ "type": "printPrice",
511
+ "price": 24.99
512
+ }
513
+ ],
514
+ "thumbnail": {
515
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/2/f0/53595c441ba04",
516
+ "extension": "jpg"
517
+ },
518
+ "images": [
519
+ {
520
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/2/f0/53595c441ba04",
521
+ "extension": "jpg"
522
+ }
523
+ ],
524
+ "creators": {
525
+ "available": 4,
526
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47928/creators",
527
+ "items": [
528
+ {
529
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
530
+ "name": "Richard Isanove",
531
+ "role": "penciller (cover)"
532
+ },
533
+ {
534
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/61",
535
+ "name": "Jim Steranko",
536
+ "role": "penciller (cover)"
537
+ },
538
+ {
539
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
540
+ "name": "Jack Kirby",
541
+ "role": "artist"
542
+ },
543
+ {
544
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
545
+ "name": "Stan Lee",
546
+ "role": "writer"
547
+ }
548
+ ],
549
+ "returned": 4
550
+ },
551
+ "characters": {
552
+ "available": 0,
553
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47928/characters",
554
+ "items": [
555
+
556
+ ],
557
+ "returned": 0
558
+ },
559
+ "stories": {
560
+ "available": 2,
561
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47928/stories",
562
+ "items": [
563
+ {
564
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108101",
565
+ "name": "cover from Marvel Masterworks: Captain America (2014)",
566
+ "type": "cover"
567
+ },
568
+ {
569
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108102",
570
+ "name": "story from Marvel Masterworks: Captain America (2014)",
571
+ "type": "interiorStory"
572
+ }
573
+ ],
574
+ "returned": 2
575
+ },
576
+ "events": {
577
+ "available": 0,
578
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47928/events",
579
+ "items": [
580
+
581
+ ],
582
+ "returned": 0
583
+ }
584
+ },
585
+ {
586
+ "id": 47929,
587
+ "digitalId": 0,
588
+ "title": "Marvel Masterworks: Captain America (Trade Paperback)",
589
+ "issueNumber": 0,
590
+ "variantDescription": "",
591
+ "description": "The MARVEL MASTERWORKS proudly unfurl one of the greatest runs in Marvel history: Stan Lee, Jack Kirby and Jim Steranko’s CAPTAIN AMERICA! We begin with the Red Skull in a plot that forces Cap to do his nemesis’ bidding or risk America’s nuclear annihilation! Its Kirby action at its best with Batroc the Leaper and the Trapster, and Lee drama at its deepest as Cap relives his first meeting with — and the death of — Bucky Barnes. Last, but most certainly not least, comes Jim Steranko! The master of the medium will take you on a ride like none other with Cap vs. the Hulk, the return of Bucky and…the death of Captain America! Collecting CAPTAIN AMERICA (1968) #101-113.",
592
+ "modified": "2014-04-24T15:57:26-0400",
593
+ "isbn": "978-0-7851-8804-9",
594
+ "upc": "",
595
+ "diamondCode": "",
596
+ "ean": "9780785 188049 52499",
597
+ "issn": "",
598
+ "format": "Trade Paperback",
599
+ "pageCount": 296,
600
+ "textObjects": [
601
+ {
602
+ "type": "issue_solicit_text",
603
+ "language": "en-us",
604
+ "text": "The MARVEL MASTERWORKS proudly unfurl one of the greatest runs in Marvel history: Stan Lee, Jack Kirby and Jim Steranko’s CAPTAIN AMERICA! We begin with the Red Skull in a plot that forces Cap to do his nemesis’ bidding or risk America’s nuclear annihilation! Its Kirby action at its best with Batroc the Leaper and the Trapster, and Lee drama at its deepest as Cap relives his first meeting with — and the death of — Bucky Barnes. Last, but most certainly not least, comes Jim Steranko! The master of the medium will take you on a ride like none other with Cap vs. the Hulk, the return of Bucky and…the death of Captain America! Collecting CAPTAIN AMERICA (1968) #101-113."
605
+ }
606
+ ],
607
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47929",
608
+ "urls": [
609
+ {
610
+ "type": "detail",
611
+ "url": "http://marvel.com/comics/collection/47929/marvel_masterworks_captain_america_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
612
+ }
613
+ ],
614
+ "series": {
615
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18107",
616
+ "name": "Marvel Masterworks: Captain America (2014)"
617
+ },
618
+ "variants": [
619
+
620
+ ],
621
+ "collections": [
622
+
623
+ ],
624
+ "collectedIssues": [
625
+
626
+ ],
627
+ "dates": [
628
+ {
629
+ "type": "onsaleDate",
630
+ "date": "2014-04-30T00:00:00-0400"
631
+ },
632
+ {
633
+ "type": "focDate",
634
+ "date": "2014-04-15T00:00:00-0400"
635
+ }
636
+ ],
637
+ "prices": [
638
+ {
639
+ "type": "printPrice",
640
+ "price": 24.99
641
+ }
642
+ ],
643
+ "thumbnail": {
644
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/60/53595f08e0aea",
645
+ "extension": "jpg"
646
+ },
647
+ "images": [
648
+ {
649
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/60/53595f08e0aea",
650
+ "extension": "jpg"
651
+ }
652
+ ],
653
+ "creators": {
654
+ "available": 4,
655
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47929/creators",
656
+ "items": [
657
+ {
658
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
659
+ "name": "Richard Isanove",
660
+ "role": "penciller (cover)"
661
+ },
662
+ {
663
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/61",
664
+ "name": "Jim Steranko",
665
+ "role": "penciller (cover)"
666
+ },
667
+ {
668
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
669
+ "name": "Jack Kirby",
670
+ "role": "artist"
671
+ },
672
+ {
673
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
674
+ "name": "Stan Lee",
675
+ "role": "writer"
676
+ }
677
+ ],
678
+ "returned": 4
679
+ },
680
+ "characters": {
681
+ "available": 0,
682
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47929/characters",
683
+ "items": [
684
+
685
+ ],
686
+ "returned": 0
687
+ },
688
+ "stories": {
689
+ "available": 2,
690
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47929/stories",
691
+ "items": [
692
+ {
693
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108103",
694
+ "name": "cover from Marvel Masterworks: Captain America (2014)",
695
+ "type": "cover"
696
+ },
697
+ {
698
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108104",
699
+ "name": "story from Marvel Masterworks: Captain America (2014)",
700
+ "type": "interiorStory"
701
+ }
702
+ ],
703
+ "returned": 2
704
+ },
705
+ "events": {
706
+ "available": 0,
707
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47929/events",
708
+ "items": [
709
+
710
+ ],
711
+ "returned": 0
712
+ }
713
+ },
714
+ {
715
+ "id": 47778,
716
+ "digitalId": 0,
717
+ "title": "Spider-Man Newspaper Strips (Trade Paperback)",
718
+ "issueNumber": 0,
719
+ "variantDescription": "",
720
+ "description": "All the strips that are fit to print! And since we’re talking about Spider-Man comic strips written by Stan “The Man” Lee and drawn by “Jazzy” John Romita, that means every one of ’em! Collecting all of Stan and John’s AMAZING SPIDER-MAN newspaper strips in chronological order, this first volume brings you the earliest classic panels that hit the daily and Sunday papers of the late 1970s! All the daily strips are printed in the original black and white, and all the Sundays in color, ready to spin a web of enchantment upon anyone who reads them! Collecting the AMAZING SPIDER-MAN newspaper strips from Jan. 3, 1977, to Jan. 28, 1979.",
721
+ "modified": "2014-04-14T16:29:34-0400",
722
+ "isbn": "978-0-7851-8561-1",
723
+ "upc": "",
724
+ "diamondCode": "",
725
+ "ean": "9780785 185611 53999",
726
+ "issn": "",
727
+ "format": "Trade Paperback",
728
+ "pageCount": 344,
729
+ "textObjects": [
730
+ {
731
+ "type": "issue_solicit_text",
732
+ "language": "en-us",
733
+ "text": "All the strips that are fit to print! And since we’re talking about Spider-Man comic strips written by Stan “The Man” Lee and drawn by “Jazzy” John Romita, that means every one of ’em! Collecting all of Stan and John’s AMAZING SPIDER-MAN newspaper strips in chronological order, this first volume brings you the earliest classic panels that hit the daily and Sunday papers of the late 1970s! All the daily strips are printed in the original black and white, and all the Sundays in color, ready to spin a web of enchantment upon anyone who reads them! Collecting the AMAZING SPIDER-MAN newspaper strips from Jan. 3, 1977, to Jan. 28, 1979."
734
+ }
735
+ ],
736
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47778",
737
+ "urls": [
738
+ {
739
+ "type": "detail",
740
+ "url": "http://marvel.com/comics/collection/47778/spider-man_newspaper_strips_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
741
+ }
742
+ ],
743
+ "series": {
744
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18050",
745
+ "name": "Spider-Man Newspaper Strips (2014)"
746
+ },
747
+ "variants": [
748
+
749
+ ],
750
+ "collections": [
751
+
752
+ ],
753
+ "collectedIssues": [
754
+
755
+ ],
756
+ "dates": [
757
+ {
758
+ "type": "onsaleDate",
759
+ "date": "2014-04-16T00:00:00-0400"
760
+ },
761
+ {
762
+ "type": "focDate",
763
+ "date": "2014-04-01T00:00:00-0400"
764
+ }
765
+ ],
766
+ "prices": [
767
+ {
768
+ "type": "printPrice",
769
+ "price": 39.99
770
+ }
771
+ ],
772
+ "thumbnail": {
773
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/10/534c436b336ae",
774
+ "extension": "jpg"
775
+ },
776
+ "images": [
777
+ {
778
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/10/534c436b336ae",
779
+ "extension": "jpg"
780
+ }
781
+ ],
782
+ "creators": {
783
+ "available": 1,
784
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47778/creators",
785
+ "items": [
786
+ {
787
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
788
+ "name": "Stan Lee",
789
+ "role": "writer"
790
+ }
791
+ ],
792
+ "returned": 1
793
+ },
794
+ "characters": {
795
+ "available": 0,
796
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47778/characters",
797
+ "items": [
798
+
799
+ ],
800
+ "returned": 0
801
+ },
802
+ "stories": {
803
+ "available": 2,
804
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47778/stories",
805
+ "items": [
806
+ {
807
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107833",
808
+ "name": "cover from Spider-Man Newspaper Strips (2014)",
809
+ "type": "cover"
810
+ },
811
+ {
812
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107834",
813
+ "name": "story from Spider-Man Newspaper Strips (2014)",
814
+ "type": "interiorStory"
815
+ }
816
+ ],
817
+ "returned": 2
818
+ },
819
+ "events": {
820
+ "available": 0,
821
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47778/events",
822
+ "items": [
823
+
824
+ ],
825
+ "returned": 0
826
+ }
827
+ },
828
+ {
829
+ "id": 49195,
830
+ "digitalId": 0,
831
+ "title": "The Amazing Spider-Man 2 Prelude (Trade Paperback)",
832
+ "issueNumber": 0,
833
+ "variantDescription": "",
834
+ "description": "Get ready for the upcoming AMAZING SPIDER-MAN 2 with an awesome adaptation of the web-slinger’s latest hit film! Witness young Peter Parker’s transformation into the Amazing Spider-Man, and his epic clash with the lethal Lizard! Then, go “between the scenes” with a story inspired by the film — featuring Gwen Stacy, Captain George Stacy, Dr. Curt Connors and more as the fledging Spider-Man prepares to swing into action! And how does Spider-Man’s battle with a new organized crime ring, and the damage he suffers, lead directly into AMAZING SPIDER-MAN 2? Plus: classic tales featuring the incredible origins of Electro and the Rhino! Collecting AMAZING SPIDER-MAN: THE MOVIE ADAPTATION #1-2, AMAZING SPIDER-MAN: THE MOVIE #1-2, AMAZING SPIDER-MAN (1963) #9 and #41, and AMAZING SPIDER-MAN: CINEMATIC INFINITE COMIC #1.",
835
+ "modified": "2014-04-08T16:39:48-0400",
836
+ "isbn": "978-0-7851-5416-7",
837
+ "upc": "",
838
+ "diamondCode": "",
839
+ "ean": "9780785 154167 51499",
840
+ "issn": "",
841
+ "format": "Trade Paperback",
842
+ "pageCount": 144,
843
+ "textObjects": [
844
+ {
845
+ "type": "issue_solicit_text",
846
+ "language": "en-us",
847
+ "text": "Get ready for the upcoming AMAZING SPIDER-MAN 2 with an awesome adaptation of the web-slinger’s latest hit film! Witness young Peter Parker’s transformation into the Amazing Spider-Man, and his epic clash with the lethal Lizard! Then, go “between the scenes” with a story inspired by the film — featuring Gwen Stacy, Captain George Stacy, Dr. Curt Connors and more as the fledging Spider-Man prepares to swing into action! And how does Spider-Man’s battle with a new organized crime ring, and the damage he suffers, lead directly into AMAZING SPIDER-MAN 2? Plus: classic tales featuring the incredible origins of Electro and the Rhino! Collecting AMAZING SPIDER-MAN: THE MOVIE ADAPTATION #1-2, AMAZING SPIDER-MAN: THE MOVIE #1-2, AMAZING SPIDER-MAN (1963) #9 and #41, and AMAZING SPIDER-MAN: CINEMATIC INFINITE COMIC #1."
848
+ }
849
+ ],
850
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/49195",
851
+ "urls": [
852
+ {
853
+ "type": "detail",
854
+ "url": "http://marvel.com/comics/collection/49195/the_amazing_spider-man_2_prelude_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
855
+ }
856
+ ],
857
+ "series": {
858
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18504",
859
+ "name": "The Amazing Spider-Man 2 Prelude (2014)"
860
+ },
861
+ "variants": [
862
+
863
+ ],
864
+ "collections": [
865
+
866
+ ],
867
+ "collectedIssues": [
868
+
869
+ ],
870
+ "dates": [
871
+ {
872
+ "type": "onsaleDate",
873
+ "date": "2014-04-09T00:00:00-0400"
874
+ },
875
+ {
876
+ "type": "focDate",
877
+ "date": "2014-03-11T00:00:00-0400"
878
+ }
879
+ ],
880
+ "prices": [
881
+ {
882
+ "type": "printPrice",
883
+ "price": 14.99
884
+ }
885
+ ],
886
+ "thumbnail": {
887
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/60/53445b8ec3335",
888
+ "extension": "jpg"
889
+ },
890
+ "images": [
891
+ {
892
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/60/53445b8ec3335",
893
+ "extension": "jpg"
894
+ }
895
+ ],
896
+ "creators": {
897
+ "available": 6,
898
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/49195/creators",
899
+ "items": [
900
+ {
901
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/5039",
902
+ "name": "Wellinton Alves",
903
+ "role": "artist"
904
+ },
905
+ {
906
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/32",
907
+ "name": "Steve Ditko",
908
+ "role": "artist"
909
+ },
910
+ {
911
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/10115",
912
+ "name": "Neil Edwards",
913
+ "role": "artist"
914
+ },
915
+ {
916
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/474",
917
+ "name": "Andrea Di Vito",
918
+ "role": "artist"
919
+ },
920
+ {
921
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9564",
922
+ "name": "Tom Cohen",
923
+ "role": "writer"
924
+ },
925
+ {
926
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
927
+ "name": "Stan Lee",
928
+ "role": "writer"
929
+ }
930
+ ],
931
+ "returned": 6
932
+ },
933
+ "characters": {
934
+ "available": 0,
935
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/49195/characters",
936
+ "items": [
937
+
938
+ ],
939
+ "returned": 0
940
+ },
941
+ "stories": {
942
+ "available": 2,
943
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/49195/stories",
944
+ "items": [
945
+ {
946
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/110475",
947
+ "name": "cover from The Amazing Spider-Man: The Movie Adaptation (2014)",
948
+ "type": "cover"
949
+ },
950
+ {
951
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/110476",
952
+ "name": "story from The Amazing Spider-Man: The Movie Adaptation (2014)",
953
+ "type": "interiorStory"
954
+ }
955
+ ],
956
+ "returned": 2
957
+ },
958
+ "events": {
959
+ "available": 0,
960
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/49195/events",
961
+ "items": [
962
+
963
+ ],
964
+ "returned": 0
965
+ }
966
+ },
967
+ {
968
+ "id": 48299,
969
+ "digitalId": 0,
970
+ "title": "Spider-Man Firsts (Trade Paperback)",
971
+ "issueNumber": 0,
972
+ "variantDescription": "",
973
+ "description": "Marvel’s most titled hero has been amazing, spectacular, sensational — even giant-size! Follow the tangled web of Peter Parker and family through this superior collection of all the friendly neighborhood Spider-Man’s series debuts! Unlimited team-ups, avenging exploits and untold tales — they’re all in a Marvel Knight’s work for a web-spinner that defies description! Collecting AMAZING SPIDER-MAN (1963) #1, MARVEL TEAM-UP (1972) #1, GIANT-SIZE SPIDER-MAN #1, SPECTACULAR SPIDER-MAN (1976) #1, WEB OF SPIDER-MAN (1985) #1, SPIDER-MAN (1990) #1, UNTOLD TALES OF SPIDER-MAN #1, SPIDER-MAN TEAM-UP #1, SENSATIONAL SPIDER-MAN (1996) #0, TANGLED WEB #1, MARVEL KNIGHTS SPIDER-MAN (2004) #1, FRIENDLY NEIGHBORHOOD SPIDER-MAN #1, AVENGING SPIDER-MAN #1, SUPERIOR SPIDER-MAN #1 and SUPERIOR SPIDER-MAN TEAM-UP #1 — plus material from SPIDER-MAN UNLIMITED (1993) #1, PETER PARKER: SPIDER-MAN (1999) #1, WEBSPINNERS: TALES OF SPIDER-MAN #1, SPIDER-MAN FAMILY (2007) #1 and AMAZING SPIDER-MAN FAMILY #1.",
974
+ "modified": "2014-04-01T16:46:30-0400",
975
+ "isbn": "978-0-7851-8901-5",
976
+ "upc": "",
977
+ "diamondCode": "",
978
+ "ean": "9780785 189015 53499",
979
+ "issn": "",
980
+ "format": "Trade Paperback",
981
+ "pageCount": 528,
982
+ "textObjects": [
983
+ {
984
+ "type": "issue_solicit_text",
985
+ "language": "en-us",
986
+ "text": "Marvel’s most titled hero has been amazing, spectacular, sensational — even giant-size! Follow the tangled web of Peter Parker and family through this superior collection of all the friendly neighborhood Spider-Man’s series debuts! Unlimited team-ups, avenging exploits and untold tales — they’re all in a Marvel Knight’s work for a web-spinner that defies description! Collecting AMAZING SPIDER-MAN (1963) #1, MARVEL TEAM-UP (1972) #1, GIANT-SIZE SPIDER-MAN #1, SPECTACULAR SPIDER-MAN (1976) #1, WEB OF SPIDER-MAN (1985) #1, SPIDER-MAN (1990) #1, UNTOLD TALES OF SPIDER-MAN #1, SPIDER-MAN TEAM-UP #1, SENSATIONAL SPIDER-MAN (1996) #0, TANGLED WEB #1, MARVEL KNIGHTS SPIDER-MAN (2004) #1, FRIENDLY NEIGHBORHOOD SPIDER-MAN #1, AVENGING SPIDER-MAN #1, SUPERIOR SPIDER-MAN #1 and SUPERIOR SPIDER-MAN TEAM-UP #1 — plus material from SPIDER-MAN UNLIMITED (1993) #1, PETER PARKER: SPIDER-MAN (1999) #1, WEBSPINNERS: TALES OF SPIDER-MAN #1, SPIDER-MAN FAMILY (2007) #1 and AMAZING SPIDER-MAN FAMILY #1."
987
+ }
988
+ ],
989
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48299",
990
+ "urls": [
991
+ {
992
+ "type": "detail",
993
+ "url": "http://marvel.com/comics/collection/48299/spider-man_firsts_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
994
+ }
995
+ ],
996
+ "series": {
997
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18303",
998
+ "name": "Spider-Man Firsts (2014)"
999
+ },
1000
+ "variants": [
1001
+
1002
+ ],
1003
+ "collections": [
1004
+
1005
+ ],
1006
+ "collectedIssues": [
1007
+
1008
+ ],
1009
+ "dates": [
1010
+ {
1011
+ "type": "onsaleDate",
1012
+ "date": "2014-04-02T00:00:00-0400"
1013
+ },
1014
+ {
1015
+ "type": "focDate",
1016
+ "date": "2014-03-18T00:00:00-0400"
1017
+ }
1018
+ ],
1019
+ "prices": [
1020
+ {
1021
+ "type": "printPrice",
1022
+ "price": 34.99
1023
+ }
1024
+ ],
1025
+ "thumbnail": {
1026
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/70/533b1fa88d913",
1027
+ "extension": "jpg"
1028
+ },
1029
+ "images": [
1030
+ {
1031
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/6/70/533b1fa88d913",
1032
+ "extension": "jpg"
1033
+ }
1034
+ ],
1035
+ "creators": {
1036
+ "available": 37,
1037
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48299/creators",
1038
+ "items": [
1039
+ {
1040
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1167",
1041
+ "name": "Ross Andru",
1042
+ "role": "artist"
1043
+ },
1044
+ {
1045
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1384",
1046
+ "name": "Terrell Bobbett",
1047
+ "role": "artist"
1048
+ },
1049
+ {
1050
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/105",
1051
+ "name": "Sal Buscema",
1052
+ "role": "artist"
1053
+ },
1054
+ {
1055
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/8002",
1056
+ "name": "Alex Cal",
1057
+ "role": "artist"
1058
+ },
1059
+ {
1060
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/32",
1061
+ "name": "Steve Ditko",
1062
+ "role": "artist"
1063
+ },
1064
+ {
1065
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1353",
1066
+ "name": "Greg Larocque",
1067
+ "role": "artist"
1068
+ },
1069
+ {
1070
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1248",
1071
+ "name": "Ken Lashley",
1072
+ "role": "artist"
1073
+ },
1074
+ {
1075
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/658",
1076
+ "name": "Ron Lim",
1077
+ "role": "artist"
1078
+ },
1079
+ {
1080
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/8349",
1081
+ "name": "David Lopez Lopez",
1082
+ "role": "artist"
1083
+ },
1084
+ {
1085
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1222",
1086
+ "name": "Joe Madureira",
1087
+ "role": "artist"
1088
+ },
1089
+ {
1090
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1231",
1091
+ "name": "Kurt Busiek",
1092
+ "role": "writer"
1093
+ },
1094
+ {
1095
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/954",
1096
+ "name": "Gerry Conway",
1097
+ "role": "writer"
1098
+ },
1099
+ {
1100
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/121",
1101
+ "name": "Peter David",
1102
+ "role": "writer"
1103
+ },
1104
+ {
1105
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9565",
1106
+ "name": "Tom DeFalco",
1107
+ "role": "writer"
1108
+ },
1109
+ {
1110
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/6986",
1111
+ "name": "J. M. DeMatteis",
1112
+ "role": "writer"
1113
+ },
1114
+ {
1115
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2",
1116
+ "name": "Garth Ennis",
1117
+ "role": "writer"
1118
+ },
1119
+ {
1120
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/155",
1121
+ "name": "Dan Jurgens",
1122
+ "role": "writer"
1123
+ },
1124
+ {
1125
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1126
+ "name": "Stan Lee",
1127
+ "role": "writer"
1128
+ },
1129
+ {
1130
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1286",
1131
+ "name": "Howard Mackie",
1132
+ "role": "writer"
1133
+ },
1134
+ {
1135
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/277",
1136
+ "name": "Terry Dodson",
1137
+ "role": "penciller (cover)"
1138
+ }
1139
+ ],
1140
+ "returned": 20
1141
+ },
1142
+ "characters": {
1143
+ "available": 0,
1144
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48299/characters",
1145
+ "items": [
1146
+
1147
+ ],
1148
+ "returned": 0
1149
+ },
1150
+ "stories": {
1151
+ "available": 2,
1152
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48299/stories",
1153
+ "items": [
1154
+ {
1155
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108785",
1156
+ "name": "cover from Spider-Man Firsts (2014)",
1157
+ "type": "cover"
1158
+ },
1159
+ {
1160
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108786",
1161
+ "name": "story from Spider-Man Firsts (2014)",
1162
+ "type": "interiorStory"
1163
+ }
1164
+ ],
1165
+ "returned": 2
1166
+ },
1167
+ "events": {
1168
+ "available": 0,
1169
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48299/events",
1170
+ "items": [
1171
+
1172
+ ],
1173
+ "returned": 0
1174
+ }
1175
+ },
1176
+ {
1177
+ "id": 48083,
1178
+ "digitalId": 0,
1179
+ "title": "Marvel Masterworks: Rawhide Kid (Trade Paperback)",
1180
+ "issueNumber": 0,
1181
+ "variantDescription": "",
1182
+ "description": "The MARVEL MASTERWORKS tame the wild, wild West with the one and only Rawhide Kid! Before Stan “the Man” and “King” Kirby spun stories of sensational super heroes, they told the tale of a young frontiersman who bore two Colt six-shooters! After his Uncle Ben Bart was killed at the hands of outlaws, Johnny Bart made it his personal mission to bring justice to the town of Rawhide. Packed full of shootouts and showdowns, renegades and rustlers, guns and girls galore, these Western yarns will be sure to please you in the Mighty Marvel Manner! So hold on to your ten-gallon hat when you read tales of the Terrible Totem, the Kid’s battle against the bank-robbing Bat, and the war with Wolf Waco! Lasso your copy today, True Believer! Collecting RAWHIDE KID (1955) #17-25.",
1183
+ "modified": "2014-03-19T16:06:39-0400",
1184
+ "isbn": "978-0-7851-8848-3",
1185
+ "upc": "",
1186
+ "diamondCode": "",
1187
+ "ean": "9780785 188483 52499",
1188
+ "issn": "",
1189
+ "format": "Trade Paperback",
1190
+ "pageCount": 248,
1191
+ "textObjects": [
1192
+ {
1193
+ "type": "issue_solicit_text",
1194
+ "language": "en-us",
1195
+ "text": "The MARVEL MASTERWORKS tame the wild, wild West with the one and only Rawhide Kid! Before Stan “the Man” and “King” Kirby spun stories of sensational super heroes, they told the tale of a young frontiersman who bore two Colt six-shooters! After his Uncle Ben Bart was killed at the hands of outlaws, Johnny Bart made it his personal mission to bring justice to the town of Rawhide. Packed full of shootouts and showdowns, renegades and rustlers, guns and girls galore, these Western yarns will be sure to please you in the Mighty Marvel Manner! So hold on to your ten-gallon hat when you read tales of the Terrible Totem, the Kid’s battle against the bank-robbing Bat, and the war with Wolf Waco! Lasso your copy today, True Believer! Collecting RAWHIDE KID (1955) #17-25."
1196
+ }
1197
+ ],
1198
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48083",
1199
+ "urls": [
1200
+ {
1201
+ "type": "detail",
1202
+ "url": "http://marvel.com/comics/collection/48083/marvel_masterworks_rawhide_kid_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1203
+ }
1204
+ ],
1205
+ "series": {
1206
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18168",
1207
+ "name": "Marvel Masterworks: Rawhide Kid (2014)"
1208
+ },
1209
+ "variants": [
1210
+
1211
+ ],
1212
+ "collections": [
1213
+
1214
+ ],
1215
+ "collectedIssues": [
1216
+
1217
+ ],
1218
+ "dates": [
1219
+ {
1220
+ "type": "onsaleDate",
1221
+ "date": "2014-03-26T00:00:00-0400"
1222
+ },
1223
+ {
1224
+ "type": "focDate",
1225
+ "date": "2014-03-11T00:00:00-0400"
1226
+ }
1227
+ ],
1228
+ "prices": [
1229
+ {
1230
+ "type": "printPrice",
1231
+ "price": 24.99
1232
+ }
1233
+ ],
1234
+ "thumbnail": {
1235
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/80/5329f6a7ed41b",
1236
+ "extension": "jpg"
1237
+ },
1238
+ "images": [
1239
+ {
1240
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/80/5329f6a7ed41b",
1241
+ "extension": "jpg"
1242
+ }
1243
+ ],
1244
+ "creators": {
1245
+ "available": 3,
1246
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48083/creators",
1247
+ "items": [
1248
+ {
1249
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
1250
+ "name": "Richard Isanove",
1251
+ "role": "penciller (cover)"
1252
+ },
1253
+ {
1254
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
1255
+ "name": "Jack Kirby",
1256
+ "role": "penciller (cover)"
1257
+ },
1258
+ {
1259
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1260
+ "name": "Stan Lee",
1261
+ "role": "writer"
1262
+ }
1263
+ ],
1264
+ "returned": 3
1265
+ },
1266
+ "characters": {
1267
+ "available": 0,
1268
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48083/characters",
1269
+ "items": [
1270
+
1271
+ ],
1272
+ "returned": 0
1273
+ },
1274
+ "stories": {
1275
+ "available": 2,
1276
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48083/stories",
1277
+ "items": [
1278
+ {
1279
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108379",
1280
+ "name": "cover from Marvel Masterworks: Rawhide Kid (2014)",
1281
+ "type": "cover"
1282
+ },
1283
+ {
1284
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108380",
1285
+ "name": "story from Marvel Masterworks: Rawhide Kid (2014)",
1286
+ "type": "interiorStory"
1287
+ }
1288
+ ],
1289
+ "returned": 2
1290
+ },
1291
+ "events": {
1292
+ "available": 0,
1293
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48083/events",
1294
+ "items": [
1295
+
1296
+ ],
1297
+ "returned": 0
1298
+ }
1299
+ },
1300
+ {
1301
+ "id": 48084,
1302
+ "digitalId": 0,
1303
+ "title": "Marvel Masterworks: Rawhide Kid (Trade Paperback)",
1304
+ "issueNumber": 0,
1305
+ "variantDescription": "",
1306
+ "description": "The MARVEL MASTERWORKS tame the wild, wild West with the one and only Rawhide Kid! Before Stan “the Man” and “King” Kirby spun stories of sensational super heroes, they told the tale of a young frontiersman who bore two Colt six-shooters! After his Uncle Ben Bart was killed at the hands of outlaws, Johnny Bart made it his personal mission to bring justice to the town of Rawhide. Packed full of shootouts and showdowns, renegades and rustlers, guns and girls galore, these Western yarns will be sure to please you in the Mighty Marvel Manner! So hold on to your ten-gallon hat when you read tales of the Terrible Totem, the Kid’s battle against the bank-robbing Bat, and the war with Wolf Waco! Lasso your copy today, True Believer! Collecting RAWHIDE KID (1955) #17-25.",
1307
+ "modified": "2014-03-19T16:18:05-0400",
1308
+ "isbn": "978-0-7851-8849-0",
1309
+ "upc": "",
1310
+ "diamondCode": "",
1311
+ "ean": "9780785 188490 52499",
1312
+ "issn": "",
1313
+ "format": "Trade Paperback",
1314
+ "pageCount": 248,
1315
+ "textObjects": [
1316
+ {
1317
+ "type": "issue_solicit_text",
1318
+ "language": "en-us",
1319
+ "text": "The MARVEL MASTERWORKS tame the wild, wild West with the one and only Rawhide Kid! Before Stan “the Man” and “King” Kirby spun stories of sensational super heroes, they told the tale of a young frontiersman who bore two Colt six-shooters! After his Uncle Ben Bart was killed at the hands of outlaws, Johnny Bart made it his personal mission to bring justice to the town of Rawhide. Packed full of shootouts and showdowns, renegades and rustlers, guns and girls galore, these Western yarns will be sure to please you in the Mighty Marvel Manner! So hold on to your ten-gallon hat when you read tales of the Terrible Totem, the Kid’s battle against the bank-robbing Bat, and the war with Wolf Waco! Lasso your copy today, True Believer! Collecting RAWHIDE KID (1955) #17-25."
1320
+ }
1321
+ ],
1322
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48084",
1323
+ "urls": [
1324
+ {
1325
+ "type": "detail",
1326
+ "url": "http://marvel.com/comics/collection/48084/marvel_masterworks_rawhide_kid_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1327
+ }
1328
+ ],
1329
+ "series": {
1330
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18169",
1331
+ "name": "Marvel Masterworks: Rawhide Kid (2014)"
1332
+ },
1333
+ "variants": [
1334
+
1335
+ ],
1336
+ "collections": [
1337
+
1338
+ ],
1339
+ "collectedIssues": [
1340
+
1341
+ ],
1342
+ "dates": [
1343
+ {
1344
+ "type": "onsaleDate",
1345
+ "date": "2014-03-26T00:00:00-0400"
1346
+ },
1347
+ {
1348
+ "type": "focDate",
1349
+ "date": "2014-03-11T00:00:00-0400"
1350
+ }
1351
+ ],
1352
+ "prices": [
1353
+ {
1354
+ "type": "printPrice",
1355
+ "price": 24.99
1356
+ }
1357
+ ],
1358
+ "thumbnail": {
1359
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/7/20/5329f9f16e90d",
1360
+ "extension": "jpg"
1361
+ },
1362
+ "images": [
1363
+ {
1364
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/7/20/5329f9f16e90d",
1365
+ "extension": "jpg"
1366
+ }
1367
+ ],
1368
+ "creators": {
1369
+ "available": 3,
1370
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48084/creators",
1371
+ "items": [
1372
+ {
1373
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
1374
+ "name": "Richard Isanove",
1375
+ "role": "penciller (cover)"
1376
+ },
1377
+ {
1378
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
1379
+ "name": "Jack Kirby",
1380
+ "role": "penciller (cover)"
1381
+ },
1382
+ {
1383
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1384
+ "name": "Stan Lee",
1385
+ "role": "writer"
1386
+ }
1387
+ ],
1388
+ "returned": 3
1389
+ },
1390
+ "characters": {
1391
+ "available": 0,
1392
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48084/characters",
1393
+ "items": [
1394
+
1395
+ ],
1396
+ "returned": 0
1397
+ },
1398
+ "stories": {
1399
+ "available": 2,
1400
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48084/stories",
1401
+ "items": [
1402
+ {
1403
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108381",
1404
+ "name": "cover from Marvel Masterworks: Rawhide Kid (2014)",
1405
+ "type": "cover"
1406
+ },
1407
+ {
1408
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108382",
1409
+ "name": "story from Marvel Masterworks: Rawhide Kid (2014)",
1410
+ "type": "interiorStory"
1411
+ }
1412
+ ],
1413
+ "returned": 2
1414
+ },
1415
+ "events": {
1416
+ "available": 0,
1417
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48084/events",
1418
+ "items": [
1419
+
1420
+ ],
1421
+ "returned": 0
1422
+ }
1423
+ },
1424
+ {
1425
+ "id": 47985,
1426
+ "digitalId": 0,
1427
+ "title": "Avengers: Falcon (Trade Paperback)",
1428
+ "issueNumber": 0,
1429
+ "variantDescription": "",
1430
+ "description": "The Falcon is soaring into animation and film — now learn his secret origin in this comprehensive collection of his formative adventures! Witness all the action as Sam Wilson, along with his trained falcon, Redwing, battles to save his fellow Harlem from slumlords, evades a malfunctioning Sentinel and takes on the megawatt menace Electro! Plus: The Falcon teams with Captain America to defeat the Red Skull, and soon becomes Cap’s costumed partner-in-crimefighting! But though villains like Mortimer Freebish and the Silencer are relative walks in the park for the high-flying hero, will the Falcon’s own traumatic past be his deadliest foe? Collecting FALCON #1-4, MARVEL PREMIERE #49, CAPTAIN AMERICA (1968) #117-119, and material from CAPTAIN AMERICA (1968) #220 and #276-278.",
1431
+ "modified": "2014-02-28T17:17:40-0500",
1432
+ "isbn": "978-0-7851-8826-1",
1433
+ "upc": "",
1434
+ "diamondCode": "DEC130765",
1435
+ "ean": "9780785 188261 52499",
1436
+ "issn": "",
1437
+ "format": "Trade Paperback",
1438
+ "pageCount": 216,
1439
+ "textObjects": [
1440
+ {
1441
+ "type": "issue_solicit_text",
1442
+ "language": "en-us",
1443
+ "text": "The Falcon is soaring into animation and film — now learn his secret origin in this comprehensive collection of his formative adventures! Witness all the action as Sam Wilson, along with his trained falcon, Redwing, battles to save his fellow Harlem from slumlords, evades a malfunctioning Sentinel and takes on the megawatt menace Electro! Plus: The Falcon teams with Captain America to defeat the Red Skull, and soon becomes Cap’s costumed partner-in-crimefighting! But though villains like Mortimer Freebish and the Silencer are relative walks in the park for the high-flying hero, will the Falcon’s own traumatic past be his deadliest foe? Collecting FALCON #1-4, MARVEL PREMIERE #49, CAPTAIN AMERICA (1968) #117-119, and material from CAPTAIN AMERICA (1968) #220 and #276-278."
1444
+ }
1445
+ ],
1446
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47985",
1447
+ "urls": [
1448
+ {
1449
+ "type": "detail",
1450
+ "url": "http://marvel.com/comics/collection/47985/avengers_falcon_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1451
+ }
1452
+ ],
1453
+ "series": {
1454
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18137",
1455
+ "name": "Avengers: Falcon (2014)"
1456
+ },
1457
+ "variants": [
1458
+
1459
+ ],
1460
+ "collections": [
1461
+
1462
+ ],
1463
+ "collectedIssues": [
1464
+
1465
+ ],
1466
+ "dates": [
1467
+ {
1468
+ "type": "onsaleDate",
1469
+ "date": "2014-03-05T00:00:00-0500"
1470
+ },
1471
+ {
1472
+ "type": "focDate",
1473
+ "date": "2014-02-18T00:00:00-0500"
1474
+ }
1475
+ ],
1476
+ "prices": [
1477
+ {
1478
+ "type": "printPrice",
1479
+ "price": 24.99
1480
+ }
1481
+ ],
1482
+ "thumbnail": {
1483
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/b/f0/5310feccd59b0",
1484
+ "extension": "jpg"
1485
+ },
1486
+ "images": [
1487
+ {
1488
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/b/f0/5310feccd59b0",
1489
+ "extension": "jpg"
1490
+ }
1491
+ ],
1492
+ "creators": {
1493
+ "available": 12,
1494
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47985/creators",
1495
+ "items": [
1496
+ {
1497
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/211",
1498
+ "name": "Mark Bright",
1499
+ "role": "artist"
1500
+ },
1501
+ {
1502
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1394",
1503
+ "name": "Bob Budiansky",
1504
+ "role": "artist"
1505
+ },
1506
+ {
1507
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/105",
1508
+ "name": "Sal Buscema",
1509
+ "role": "artist"
1510
+ },
1511
+ {
1512
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/270",
1513
+ "name": "Gene Colan",
1514
+ "role": "artist"
1515
+ },
1516
+ {
1517
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/431",
1518
+ "name": "Paul Smith",
1519
+ "role": "artist"
1520
+ },
1521
+ {
1522
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/3447",
1523
+ "name": "Michael Zeck",
1524
+ "role": "artist"
1525
+ },
1526
+ {
1527
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/6986",
1528
+ "name": "J. M. DeMatteis",
1529
+ "role": "writer"
1530
+ },
1531
+ {
1532
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1273",
1533
+ "name": "Scott Edelman",
1534
+ "role": "writer"
1535
+ },
1536
+ {
1537
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/3131",
1538
+ "name": "Mark Evanier",
1539
+ "role": "writer"
1540
+ },
1541
+ {
1542
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1543
+ "name": "Stan Lee",
1544
+ "role": "writer"
1545
+ },
1546
+ {
1547
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2630",
1548
+ "name": "James Owsley",
1549
+ "role": "writer"
1550
+ },
1551
+ {
1552
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/17",
1553
+ "name": "Frank Miller",
1554
+ "role": "penciller (cover)"
1555
+ }
1556
+ ],
1557
+ "returned": 12
1558
+ },
1559
+ "characters": {
1560
+ "available": 0,
1561
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47985/characters",
1562
+ "items": [
1563
+
1564
+ ],
1565
+ "returned": 0
1566
+ },
1567
+ "stories": {
1568
+ "available": 2,
1569
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47985/stories",
1570
+ "items": [
1571
+ {
1572
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108211",
1573
+ "name": "cover from Avengers: Falcon (2014)",
1574
+ "type": "cover"
1575
+ },
1576
+ {
1577
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108212",
1578
+ "name": "story from Avengers: Falcon (2014)",
1579
+ "type": "interiorStory"
1580
+ }
1581
+ ],
1582
+ "returned": 2
1583
+ },
1584
+ "events": {
1585
+ "available": 0,
1586
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47985/events",
1587
+ "items": [
1588
+
1589
+ ],
1590
+ "returned": 0
1591
+ }
1592
+ },
1593
+ {
1594
+ "id": 48069,
1595
+ "digitalId": 0,
1596
+ "title": "Marvel Masterworks: The Fantastic Four (Trade Paperback)",
1597
+ "issueNumber": 0,
1598
+ "variantDescription": "",
1599
+ "description": "Certifiably the World’s Greatest Comic Collaboration, the Stan Lee/Jack Kirby FANTASTIC FOUR run stands as one of the greatest accomplishments in the history of comics. Across ten titanic years, they laid the foundation of the Marvel Universe and birthed more amazing concepts and characters than perhaps any series before or since. But that’s enough waxing nostalgic, True Believer! This is a Marvel comic, after all! Expect plenty of explosive action and family drama including Dr. Doom, a mission to save Apollo 11, the Inhumans, the Sub-Mariner, Magneto and more! Top to it off, we celebrate the entire Lee/Kirby run with essays by critics, creators and comics luminaries — as well as the completed original version of Stan and Jack’s “lost” FF issue! Collecting FANTASTIC FOUR (1961) #94-104 and FANTASTIC FOUR: THE LOST ADVENTURE.",
1600
+ "modified": "2014-02-25T11:10:06-0500",
1601
+ "isbn": "978-0-7851-8840-7",
1602
+ "upc": "",
1603
+ "diamondCode": "DEC130772",
1604
+ "ean": "9780785 188407 52499",
1605
+ "issn": "",
1606
+ "format": "Trade Paperback",
1607
+ "pageCount": 288,
1608
+ "textObjects": [
1609
+ {
1610
+ "type": "issue_solicit_text",
1611
+ "language": "en-us",
1612
+ "text": "Certifiably the World’s Greatest Comic Collaboration, the Stan Lee/Jack Kirby FANTASTIC FOUR run stands as one of the greatest accomplishments in the history of comics. Across ten titanic years, they laid the foundation of the Marvel Universe and birthed more amazing concepts and characters than perhaps any series before or since. But that’s enough waxing nostalgic, True Believer! This is a Marvel comic, after all! Expect plenty of explosive action and family drama including Dr. Doom, a mission to save Apollo 11, the Inhumans, the Sub-Mariner, Magneto and more! Top to it off, we celebrate the entire Lee/Kirby run with essays by critics, creators and comics luminaries — as well as the completed original version of Stan and Jack’s “lost” FF issue! Collecting FANTASTIC FOUR (1961) #94-104 and FANTASTIC FOUR: THE LOST ADVENTURE."
1613
+ }
1614
+ ],
1615
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48069",
1616
+ "urls": [
1617
+ {
1618
+ "type": "detail",
1619
+ "url": "http://marvel.com/comics/collection/48069/marvel_masterworks_the_fantastic_four_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1620
+ }
1621
+ ],
1622
+ "series": {
1623
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18160",
1624
+ "name": "Marvel Masterworks: The Fantastic Four (2014)"
1625
+ },
1626
+ "variants": [
1627
+
1628
+ ],
1629
+ "collections": [
1630
+
1631
+ ],
1632
+ "collectedIssues": [
1633
+
1634
+ ],
1635
+ "dates": [
1636
+ {
1637
+ "type": "onsaleDate",
1638
+ "date": "2014-02-26T00:00:00-0500"
1639
+ },
1640
+ {
1641
+ "type": "focDate",
1642
+ "date": "2014-02-11T00:00:00-0500"
1643
+ }
1644
+ ],
1645
+ "prices": [
1646
+ {
1647
+ "type": "printPrice",
1648
+ "price": 24.99
1649
+ }
1650
+ ],
1651
+ "thumbnail": {
1652
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/b/c0/530cbf5dbc505",
1653
+ "extension": "jpg"
1654
+ },
1655
+ "images": [
1656
+ {
1657
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/b/c0/530cbf5dbc505",
1658
+ "extension": "jpg"
1659
+ }
1660
+ ],
1661
+ "creators": {
1662
+ "available": 5,
1663
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48069/creators",
1664
+ "items": [
1665
+ {
1666
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/5764",
1667
+ "name": "Ron Frenz",
1668
+ "role": "artist"
1669
+ },
1670
+ {
1671
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/214",
1672
+ "name": "John Romita JR.",
1673
+ "role": "artist"
1674
+ },
1675
+ {
1676
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
1677
+ "name": "Richard Isanove",
1678
+ "role": "penciller (cover)"
1679
+ },
1680
+ {
1681
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
1682
+ "name": "Jack Kirby",
1683
+ "role": "penciller (cover)"
1684
+ },
1685
+ {
1686
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1687
+ "name": "Stan Lee",
1688
+ "role": "writer"
1689
+ }
1690
+ ],
1691
+ "returned": 5
1692
+ },
1693
+ "characters": {
1694
+ "available": 0,
1695
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48069/characters",
1696
+ "items": [
1697
+
1698
+ ],
1699
+ "returned": 0
1700
+ },
1701
+ "stories": {
1702
+ "available": 2,
1703
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48069/stories",
1704
+ "items": [
1705
+ {
1706
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108355",
1707
+ "name": "cover from Marvel Masterworks: The Fantastic Four (2014)",
1708
+ "type": "cover"
1709
+ },
1710
+ {
1711
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108356",
1712
+ "name": "story from Marvel Masterworks: The Fantastic Four (2014)",
1713
+ "type": "interiorStory"
1714
+ }
1715
+ ],
1716
+ "returned": 2
1717
+ },
1718
+ "events": {
1719
+ "available": 0,
1720
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48069/events",
1721
+ "items": [
1722
+
1723
+ ],
1724
+ "returned": 0
1725
+ }
1726
+ },
1727
+ {
1728
+ "id": 48068,
1729
+ "digitalId": 0,
1730
+ "title": "Marvel Masterworks: The Fantastic Four (Trade Paperback)",
1731
+ "issueNumber": 0,
1732
+ "variantDescription": "",
1733
+ "description": "Certifiably the World’s Greatest Comic Collaboration, the Stan Lee/Jack Kirby FANTASTIC FOUR run stands as one of the greatest accomplishments in the history of comics. Across ten titanic years, they laid the foundation of the Marvel Universe and birthed more amazing concepts and characters than perhaps any series before or since. But that’s enough waxing nostalgic, True Believer! This is a Marvel comic, after all! Expect plenty of explosive action and family drama including Dr. Doom, a mission to save Apollo 11, the Inhumans, the Sub-Mariner, Magneto and more! Top to it off, we celebrate the entire Lee/Kirby run with essays by critics, creators and comics luminaries — as well as the completed original version of Stan and Jack’s “lost” FF issue! Collecting FANTASTIC FOUR (1961) #94-104 and FANTASTIC FOUR: THE LOST ADVENTURE.",
1734
+ "modified": "2014-02-25T11:03:51-0500",
1735
+ "isbn": "978-0-7851-8839-1",
1736
+ "upc": "",
1737
+ "diamondCode": "DEC130771",
1738
+ "ean": "9780785 188391 52499",
1739
+ "issn": "",
1740
+ "format": "Trade Paperback",
1741
+ "pageCount": 288,
1742
+ "textObjects": [
1743
+ {
1744
+ "type": "issue_solicit_text",
1745
+ "language": "en-us",
1746
+ "text": "Certifiably the World’s Greatest Comic Collaboration, the Stan Lee/Jack Kirby FANTASTIC FOUR run stands as one of the greatest accomplishments in the history of comics. Across ten titanic years, they laid the foundation of the Marvel Universe and birthed more amazing concepts and characters than perhaps any series before or since. But that’s enough waxing nostalgic, True Believer! This is a Marvel comic, after all! Expect plenty of explosive action and family drama including Dr. Doom, a mission to save Apollo 11, the Inhumans, the Sub-Mariner, Magneto and more! Top to it off, we celebrate the entire Lee/Kirby run with essays by critics, creators and comics luminaries — as well as the completed original version of Stan and Jack’s “lost” FF issue! Collecting FANTASTIC FOUR (1961) #94-104 and FANTASTIC FOUR: THE LOST ADVENTURE."
1747
+ }
1748
+ ],
1749
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48068",
1750
+ "urls": [
1751
+ {
1752
+ "type": "detail",
1753
+ "url": "http://marvel.com/comics/collection/48068/marvel_masterworks_the_fantastic_four_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1754
+ }
1755
+ ],
1756
+ "series": {
1757
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18159",
1758
+ "name": "Marvel Masterworks: The Fantastic Four (2014)"
1759
+ },
1760
+ "variants": [
1761
+
1762
+ ],
1763
+ "collections": [
1764
+
1765
+ ],
1766
+ "collectedIssues": [
1767
+
1768
+ ],
1769
+ "dates": [
1770
+ {
1771
+ "type": "onsaleDate",
1772
+ "date": "2014-02-26T00:00:00-0500"
1773
+ },
1774
+ {
1775
+ "type": "focDate",
1776
+ "date": "2014-02-11T00:00:00-0500"
1777
+ }
1778
+ ],
1779
+ "prices": [
1780
+ {
1781
+ "type": "printPrice",
1782
+ "price": 24.99
1783
+ }
1784
+ ],
1785
+ "thumbnail": {
1786
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/e/60/530cbd7ca0eb2",
1787
+ "extension": "jpg"
1788
+ },
1789
+ "images": [
1790
+ {
1791
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/e/60/530cbd7ca0eb2",
1792
+ "extension": "jpg"
1793
+ }
1794
+ ],
1795
+ "creators": {
1796
+ "available": 5,
1797
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48068/creators",
1798
+ "items": [
1799
+ {
1800
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/5764",
1801
+ "name": "Ron Frenz",
1802
+ "role": "artist"
1803
+ },
1804
+ {
1805
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/214",
1806
+ "name": "John Romita JR.",
1807
+ "role": "artist"
1808
+ },
1809
+ {
1810
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
1811
+ "name": "Richard Isanove",
1812
+ "role": "penciller (cover)"
1813
+ },
1814
+ {
1815
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
1816
+ "name": "Jack Kirby",
1817
+ "role": "penciller (cover)"
1818
+ },
1819
+ {
1820
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1821
+ "name": "Stan Lee",
1822
+ "role": "writer"
1823
+ }
1824
+ ],
1825
+ "returned": 5
1826
+ },
1827
+ "characters": {
1828
+ "available": 0,
1829
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48068/characters",
1830
+ "items": [
1831
+
1832
+ ],
1833
+ "returned": 0
1834
+ },
1835
+ "stories": {
1836
+ "available": 2,
1837
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48068/stories",
1838
+ "items": [
1839
+ {
1840
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108353",
1841
+ "name": "cover from Marvel Masterworks: The Fantastic Four (2014)",
1842
+ "type": "cover"
1843
+ },
1844
+ {
1845
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108354",
1846
+ "name": "story from Marvel Masterworks: The Fantastic Four (2014)",
1847
+ "type": "interiorStory"
1848
+ }
1849
+ ],
1850
+ "returned": 2
1851
+ },
1852
+ "events": {
1853
+ "available": 0,
1854
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48068/events",
1855
+ "items": [
1856
+
1857
+ ],
1858
+ "returned": 0
1859
+ }
1860
+ },
1861
+ {
1862
+ "id": 48109,
1863
+ "digitalId": 0,
1864
+ "title": "Fantastic Four Epic Collection: All in the Family (Trade Paperback)",
1865
+ "issueNumber": 0,
1866
+ "variantDescription": "",
1867
+ "description": "After a lengthy absence, the Thing returns to the Fantastic Four! But he’s returned just before his ex-girlfriend Alicia’s wedding to the Human Torch, and Alicia’s stepfather the Puppet Master isn’t happy about the nuptials! Then, when Mr. Fantastic turns down the X-Men’s request to help their dying teammate Shadowcat, Dr. Doom is more than happy to offer assistance! But is he secretly plotting to drive the FF apart? He’s certainly up to something when he kidnaps Franklin and offers him to Mephisto! And when Mr. Fantastic and Invisible Woman take a leave of absence, the old order changeth as the Torch’s ex-flame Crystal and the new Ms. Marvel join the team — just in time to face down Diablo’s vicious elementals! Collecting FANTASTIC FOUR (1961) #296-307 and ANNUAL #20, and FANTASTIC FOUR VS. THE X-MEN #1-4.",
1868
+ "modified": "2014-01-13T14:49:39-0500",
1869
+ "isbn": "978-0-7851-8865-0",
1870
+ "upc": "",
1871
+ "diamondCode": "OCT130771",
1872
+ "ean": "9780785 188650 53499",
1873
+ "issn": "",
1874
+ "format": "Trade Paperback",
1875
+ "pageCount": 496,
1876
+ "textObjects": [
1877
+ {
1878
+ "type": "issue_solicit_text",
1879
+ "language": "en-us",
1880
+ "text": "After a lengthy absence, the Thing returns to the Fantastic Four! But he’s returned just before his ex-girlfriend Alicia’s wedding to the Human Torch, and Alicia’s stepfather the Puppet Master isn’t happy about the nuptials! Then, when Mr. Fantastic turns down the X-Men’s request to help their dying teammate Shadowcat, Dr. Doom is more than happy to offer assistance! But is he secretly plotting to drive the FF apart? He’s certainly up to something when he kidnaps Franklin and offers him to Mephisto! And when Mr. Fantastic and Invisible Woman take a leave of absence, the old order changeth as the Torch’s ex-flame Crystal and the new Ms. Marvel join the team — just in time to face down Diablo’s vicious elementals! Collecting FANTASTIC FOUR (1961) #296-307 and ANNUAL #20, and FANTASTIC FOUR VS. THE X-MEN #1-4."
1881
+ }
1882
+ ],
1883
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/48109",
1884
+ "urls": [
1885
+ {
1886
+ "type": "detail",
1887
+ "url": "http://marvel.com/comics/collection/48109/fantastic_four_epic_collection_all_in_the_family_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
1888
+ }
1889
+ ],
1890
+ "series": {
1891
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18188",
1892
+ "name": "Fantastic Four Epic Collection: All in the Family (2014)"
1893
+ },
1894
+ "variants": [
1895
+
1896
+ ],
1897
+ "collections": [
1898
+
1899
+ ],
1900
+ "collectedIssues": [
1901
+
1902
+ ],
1903
+ "dates": [
1904
+ {
1905
+ "type": "onsaleDate",
1906
+ "date": "2014-01-15T00:00:00-0500"
1907
+ },
1908
+ {
1909
+ "type": "focDate",
1910
+ "date": "2013-12-30T00:00:00-0500"
1911
+ }
1912
+ ],
1913
+ "prices": [
1914
+ {
1915
+ "type": "printPrice",
1916
+ "price": 34.99
1917
+ }
1918
+ ],
1919
+ "thumbnail": {
1920
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/90/52d4416e274e7",
1921
+ "extension": "jpg"
1922
+ },
1923
+ "images": [
1924
+ {
1925
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/90/52d4416e274e7",
1926
+ "extension": "jpg"
1927
+ }
1928
+ ],
1929
+ "creators": {
1930
+ "available": 12,
1931
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48109/creators",
1932
+ "items": [
1933
+ {
1934
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1279",
1935
+ "name": "Jon Bogdanove",
1936
+ "role": "artist"
1937
+ },
1938
+ {
1939
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1612",
1940
+ "name": "John Buscema",
1941
+ "role": "artist"
1942
+ },
1943
+ {
1944
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/262",
1945
+ "name": "Paul Neary",
1946
+ "role": "artist"
1947
+ },
1948
+ {
1949
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1232",
1950
+ "name": "Jerry Ordway",
1951
+ "role": "artist"
1952
+ },
1953
+ {
1954
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/44",
1955
+ "name": "Chris Claremont",
1956
+ "role": "writer"
1957
+ },
1958
+ {
1959
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9565",
1960
+ "name": "Tom DeFalco",
1961
+ "role": "writer"
1962
+ },
1963
+ {
1964
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/104",
1965
+ "name": "Steve Englehart",
1966
+ "role": "writer"
1967
+ },
1968
+ {
1969
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
1970
+ "name": "Stan Lee",
1971
+ "role": "writer"
1972
+ },
1973
+ {
1974
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/946",
1975
+ "name": "Jim Shooter",
1976
+ "role": "writer"
1977
+ },
1978
+ {
1979
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/958",
1980
+ "name": "Roger Stern",
1981
+ "role": "writer"
1982
+ },
1983
+ {
1984
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2909",
1985
+ "name": "Roy Thomas",
1986
+ "role": "writer"
1987
+ },
1988
+ {
1989
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/5764",
1990
+ "name": "Ron Frenz",
1991
+ "role": "penciller (cover)"
1992
+ }
1993
+ ],
1994
+ "returned": 12
1995
+ },
1996
+ "characters": {
1997
+ "available": 0,
1998
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48109/characters",
1999
+ "items": [
2000
+
2001
+ ],
2002
+ "returned": 0
2003
+ },
2004
+ "stories": {
2005
+ "available": 2,
2006
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48109/stories",
2007
+ "items": [
2008
+ {
2009
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108431",
2010
+ "name": "cover from Fantastic Four Epic Collection: All in the Family (2014)",
2011
+ "type": "cover"
2012
+ },
2013
+ {
2014
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108432",
2015
+ "name": "story from Fantastic Four Epic Collection: All in the Family (2014)",
2016
+ "type": "interiorStory"
2017
+ }
2018
+ ],
2019
+ "returned": 2
2020
+ },
2021
+ "events": {
2022
+ "available": 0,
2023
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/48109/events",
2024
+ "items": [
2025
+
2026
+ ],
2027
+ "returned": 0
2028
+ }
2029
+ },
2030
+ {
2031
+ "id": 47799,
2032
+ "digitalId": 0,
2033
+ "title": "DEADPOOL BY JOE KELLY OMNIBUS HC (Hardcover)",
2034
+ "issueNumber": 0,
2035
+ "variantDescription": "",
2036
+ "description": "Wade Wilson is a self-loathing killer for hire — but he dreams of being a hero. So when an interdimensional organization reveals his destiny to save the world, is it the chance for redemption Deadpool has longed for — or is it too good to be true? Either way, with reluctant allies like Siryn, Monty, Weasel and the elderly prisoner Blind Al, and formidable foes like Taskmaster, Typhoid Mary and T-Ray — who carries a soul-shattering secret that could destroy Deadpool — the odds are stacked against the Merc with a Mouth! Joe Kelly’s hilarious, brutal, twisted and definitive take on Deadpool is presented in one oversized hardcover! Collecting DEADPOOL (1997) #1-33, #-1 and #0, DAREDEVIL/DEADPOOL ANNUAL ’97, DEADPOOL/DEATH ANNUAL ’98, BABY’S FIRST DEADPOOL BOOK, AMAZING SPIDER-MAN (1963) #47 and #611, and material from DEADPOOL (2008) #900.",
2037
+ "modified": "2013-12-20T16:39:19-0500",
2038
+ "isbn": "978-0-7851-8559-8",
2039
+ "upc": "",
2040
+ "diamondCode": "AUG130864",
2041
+ "ean": "9780785 185598 59999",
2042
+ "issn": "",
2043
+ "format": "Hardcover",
2044
+ "pageCount": 1160,
2045
+ "textObjects": [
2046
+ {
2047
+ "type": "issue_solicit_text",
2048
+ "language": "en-us",
2049
+ "text": "Wade Wilson is a self-loathing killer for hire — but he dreams of being a hero. So when an interdimensional organization reveals his destiny to save the world, is it the chance for redemption Deadpool has longed for — or is it too good to be true? Either way, with reluctant allies like Siryn, Monty, Weasel and the elderly prisoner Blind Al, and formidable foes like Taskmaster, Typhoid Mary and T-Ray — who carries a soul-shattering secret that could destroy Deadpool — the odds are stacked against the Merc with a Mouth! Joe Kelly’s hilarious, brutal, twisted and definitive take on Deadpool is presented in one oversized hardcover! Collecting DEADPOOL (1997) #1-33, #-1 and #0, DAREDEVIL/DEADPOOL ANNUAL ’97, DEADPOOL/DEATH ANNUAL ’98, BABY’S FIRST DEADPOOL BOOK, AMAZING SPIDER-MAN (1963) #47 and #611, and material from DEADPOOL (2008) #900."
2050
+ }
2051
+ ],
2052
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47799",
2053
+ "urls": [
2054
+ {
2055
+ "type": "detail",
2056
+ "url": "http://marvel.com/comics/collection/47799/deadpool_by_joe_kelly_omnibus_hc_hardcover?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2057
+ }
2058
+ ],
2059
+ "series": {
2060
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18057",
2061
+ "name": "DEADPOOL BY JOE KELLY OMNIBUS HC (2014)"
2062
+ },
2063
+ "variants": [
2064
+
2065
+ ],
2066
+ "collections": [
2067
+
2068
+ ],
2069
+ "collectedIssues": [
2070
+
2071
+ ],
2072
+ "dates": [
2073
+ {
2074
+ "type": "onsaleDate",
2075
+ "date": "2014-01-01T00:00:00-0500"
2076
+ },
2077
+ {
2078
+ "type": "focDate",
2079
+ "date": "2013-11-12T00:00:00-0500"
2080
+ }
2081
+ ],
2082
+ "prices": [
2083
+ {
2084
+ "type": "printPrice",
2085
+ "price": 125
2086
+ }
2087
+ ],
2088
+ "thumbnail": {
2089
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/20/52b4b68bc80b5",
2090
+ "extension": "jpg"
2091
+ },
2092
+ "images": [
2093
+ {
2094
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/9/20/52b4b68bc80b5",
2095
+ "extension": "jpg"
2096
+ }
2097
+ ],
2098
+ "creators": {
2099
+ "available": 4,
2100
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47799/creators",
2101
+ "items": [
2102
+ {
2103
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2503",
2104
+ "name": "James Felder",
2105
+ "role": "writer"
2106
+ },
2107
+ {
2108
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2428",
2109
+ "name": "Joe Kelly",
2110
+ "role": "writer"
2111
+ },
2112
+ {
2113
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2114
+ "name": "Stan Lee",
2115
+ "role": "writer"
2116
+ },
2117
+ {
2118
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/649",
2119
+ "name": "Ed McGuinness",
2120
+ "role": "penciler (cover)"
2121
+ }
2122
+ ],
2123
+ "returned": 4
2124
+ },
2125
+ "characters": {
2126
+ "available": 0,
2127
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47799/characters",
2128
+ "items": [
2129
+
2130
+ ],
2131
+ "returned": 0
2132
+ },
2133
+ "stories": {
2134
+ "available": 2,
2135
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47799/stories",
2136
+ "items": [
2137
+ {
2138
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107855",
2139
+ "name": "cover from Deadpool by Joe Kelly (2014)",
2140
+ "type": "cover"
2141
+ },
2142
+ {
2143
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107856",
2144
+ "name": "story from Deadpool by Joe Kelly (2014)",
2145
+ "type": "interiorStory"
2146
+ }
2147
+ ],
2148
+ "returned": 2
2149
+ },
2150
+ "events": {
2151
+ "available": 0,
2152
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47799/events",
2153
+ "items": [
2154
+
2155
+ ],
2156
+ "returned": 0
2157
+ }
2158
+ },
2159
+ {
2160
+ "id": 47800,
2161
+ "digitalId": 0,
2162
+ "title": "Deadpool by Joe Kelly (Hardcover)",
2163
+ "issueNumber": 0,
2164
+ "variantDescription": "",
2165
+ "description": "Wade Wilson is a self-loathing killer for hire — but he dreams of being a hero. So when an interdimensional organization reveals his destiny to save the world, is it the chance for redemption Deadpool has longed for — or is it too good to be true? Either way, with reluctant allies like Siryn, Monty, Weasel and the elderly prisoner Blind Al, and formidable foes like Taskmaster, Typhoid Mary and T-Ray — who carries a soul-shattering secret that could destroy Deadpool — the odds are stacked against the Merc with a Mouth! Joe Kelly’s hilarious, brutal, twisted and definitive take on Deadpool is presented in one oversized hardcover! Collecting DEADPOOL (1997) #1-33, #-1 and #0, DAREDEVIL/DEADPOOL ANNUAL ’97, DEADPOOL/DEATH ANNUAL ’98, BABY’S FIRST DEADPOOL BOOK, AMAZING SPIDER-MAN (1963) #47 and #611, and material from DEADPOOL (2008) #900.",
2166
+ "modified": "2013-12-20T16:39:19-0500",
2167
+ "isbn": "978-0-7851-8560-4",
2168
+ "upc": "",
2169
+ "diamondCode": "AUG130865",
2170
+ "ean": "9780785 185604 59999",
2171
+ "issn": "",
2172
+ "format": "Hardcover",
2173
+ "pageCount": 1160,
2174
+ "textObjects": [
2175
+ {
2176
+ "type": "issue_solicit_text",
2177
+ "language": "en-us",
2178
+ "text": "Wade Wilson is a self-loathing killer for hire — but he dreams of being a hero. So when an interdimensional organization reveals his destiny to save the world, is it the chance for redemption Deadpool has longed for — or is it too good to be true? Either way, with reluctant allies like Siryn, Monty, Weasel and the elderly prisoner Blind Al, and formidable foes like Taskmaster, Typhoid Mary and T-Ray — who carries a soul-shattering secret that could destroy Deadpool — the odds are stacked against the Merc with a Mouth! Joe Kelly’s hilarious, brutal, twisted and definitive take on Deadpool is presented in one oversized hardcover! Collecting DEADPOOL (1997) #1-33, #-1 and #0, DAREDEVIL/DEADPOOL ANNUAL ’97, DEADPOOL/DEATH ANNUAL ’98, BABY’S FIRST DEADPOOL BOOK, AMAZING SPIDER-MAN (1963) #47 and #611, and material from DEADPOOL (2008) #900."
2179
+ }
2180
+ ],
2181
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47800",
2182
+ "urls": [
2183
+ {
2184
+ "type": "detail",
2185
+ "url": "http://marvel.com/comics/collection/47800/deadpool_by_joe_kelly_hardcover?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2186
+ }
2187
+ ],
2188
+ "series": {
2189
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18058",
2190
+ "name": "Deadpool by Joe Kelly (2014)"
2191
+ },
2192
+ "variants": [
2193
+
2194
+ ],
2195
+ "collections": [
2196
+
2197
+ ],
2198
+ "collectedIssues": [
2199
+
2200
+ ],
2201
+ "dates": [
2202
+ {
2203
+ "type": "onsaleDate",
2204
+ "date": "2014-01-01T00:00:00-0500"
2205
+ },
2206
+ {
2207
+ "type": "focDate",
2208
+ "date": "2013-11-12T00:00:00-0500"
2209
+ }
2210
+ ],
2211
+ "prices": [
2212
+ {
2213
+ "type": "printPrice",
2214
+ "price": 125
2215
+ }
2216
+ ],
2217
+ "thumbnail": {
2218
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/c/30/52b4b7bb7a2e9",
2219
+ "extension": "jpg"
2220
+ },
2221
+ "images": [
2222
+ {
2223
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/c/30/52b4b7bb7a2e9",
2224
+ "extension": "jpg"
2225
+ }
2226
+ ],
2227
+ "creators": {
2228
+ "available": 4,
2229
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47800/creators",
2230
+ "items": [
2231
+ {
2232
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2503",
2233
+ "name": "James Felder",
2234
+ "role": "writer"
2235
+ },
2236
+ {
2237
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2428",
2238
+ "name": "Joe Kelly",
2239
+ "role": "writer"
2240
+ },
2241
+ {
2242
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2243
+ "name": "Stan Lee",
2244
+ "role": "writer"
2245
+ },
2246
+ {
2247
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/649",
2248
+ "name": "Ed McGuinness",
2249
+ "role": "penciller (cover)"
2250
+ }
2251
+ ],
2252
+ "returned": 4
2253
+ },
2254
+ "characters": {
2255
+ "available": 0,
2256
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47800/characters",
2257
+ "items": [
2258
+
2259
+ ],
2260
+ "returned": 0
2261
+ },
2262
+ "stories": {
2263
+ "available": 2,
2264
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47800/stories",
2265
+ "items": [
2266
+ {
2267
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107857",
2268
+ "name": "cover from Deadpool by Joe Kelly (2014) (VARIANT)",
2269
+ "type": "cover"
2270
+ },
2271
+ {
2272
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/107858",
2273
+ "name": "story from Deadpool by Joe Kelly (2014) (VARIANT)",
2274
+ "type": "interiorStory"
2275
+ }
2276
+ ],
2277
+ "returned": 2
2278
+ },
2279
+ "events": {
2280
+ "available": 0,
2281
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47800/events",
2282
+ "items": [
2283
+
2284
+ ],
2285
+ "returned": 0
2286
+ }
2287
+ },
2288
+ {
2289
+ "id": 47900,
2290
+ "digitalId": 0,
2291
+ "title": "THE FANTASTIC FOUR OMNIBUS VOL. 2 HC (NEW PRINTING) (Hardcover)",
2292
+ "issueNumber": 0,
2293
+ "variantDescription": "",
2294
+ "description": "Stan Lee and Jack Kirby’s first 30 issues of Fantastic Four were just the warm-up — here’s where they really turn up the heat! Experience the boundless energy of two creators at the top of their game: the origin of Dr. Doom; the Frightful Four; the wedding of Reed Richards and Sue Storm; the Inhumans; the Silver Surfer; the Galactus Saga; the debut of the world’s first black super hero, the Black Panther; the cosmic clash between the FF, Surfer and Dr. Doom; and of course, “This Man, This Monster!” — widely regarded as the greatest FF tale of all! This massive collector’s edition, painstakingly restored from the sharpest material in the Marvel Archives, and packed with critical essays and bonus features aplenty, is nothing short of a cornerstone to the Marvel Universe! Collecting FANTASTIC FOUR (1961) #31-60 and ANNUAL #2-4.",
2295
+ "modified": "2013-12-04T16:13:21-0500",
2296
+ "isbn": "978-0-7851-8567-3",
2297
+ "upc": "",
2298
+ "diamondCode": "JUL130700",
2299
+ "ean": "9780785 185673 59999",
2300
+ "issn": "",
2301
+ "format": "Hardcover",
2302
+ "pageCount": 832,
2303
+ "textObjects": [
2304
+ {
2305
+ "type": "issue_solicit_text",
2306
+ "language": "en-us",
2307
+ "text": "Stan Lee and Jack Kirby’s first 30 issues of Fantastic Four were just the warm-up — here’s where they really turn up the heat! Experience the boundless energy of two creators at the top of their game: the origin of Dr. Doom; the Frightful Four; the wedding of Reed Richards and Sue Storm; the Inhumans; the Silver Surfer; the Galactus Saga; the debut of the world’s first black super hero, the Black Panther; the cosmic clash between the FF, Surfer and Dr. Doom; and of course, “This Man, This Monster!” — widely regarded as the greatest FF tale of all! This massive collector’s edition, painstakingly restored from the sharpest material in the Marvel Archives, and packed with critical essays and bonus features aplenty, is nothing short of a cornerstone to the Marvel Universe! Collecting FANTASTIC FOUR (1961) #31-60 and ANNUAL #2-4."
2308
+ }
2309
+ ],
2310
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47900",
2311
+ "urls": [
2312
+ {
2313
+ "type": "detail",
2314
+ "url": "http://marvel.com/comics/collection/47900/the_fantastic_four_omnibus_vol_2_hc_new_printing_hardcover?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2315
+ }
2316
+ ],
2317
+ "series": {
2318
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18089",
2319
+ "name": "THE FANTASTIC FOUR OMNIBUS VOL. 2 HC (NEW PRINTING) (2013)"
2320
+ },
2321
+ "variants": [
2322
+
2323
+ ],
2324
+ "collections": [
2325
+
2326
+ ],
2327
+ "collectedIssues": [
2328
+
2329
+ ],
2330
+ "dates": [
2331
+ {
2332
+ "type": "onsaleDate",
2333
+ "date": "2013-12-04T00:00:00-0500"
2334
+ },
2335
+ {
2336
+ "type": "focDate",
2337
+ "date": "2013-10-15T00:00:00-0400"
2338
+ }
2339
+ ],
2340
+ "prices": [
2341
+ {
2342
+ "type": "printPrice",
2343
+ "price": 99.99
2344
+ }
2345
+ ],
2346
+ "thumbnail": {
2347
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/90/529f9a34471a4",
2348
+ "extension": "jpg"
2349
+ },
2350
+ "images": [
2351
+ {
2352
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/3/90/529f9a34471a4",
2353
+ "extension": "jpg"
2354
+ }
2355
+ ],
2356
+ "creators": {
2357
+ "available": 2,
2358
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47900/creators",
2359
+ "items": [
2360
+ {
2361
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
2362
+ "name": "Jack Kirby",
2363
+ "role": "penciller (cover)"
2364
+ },
2365
+ {
2366
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2367
+ "name": "Stan Lee",
2368
+ "role": "writer"
2369
+ }
2370
+ ],
2371
+ "returned": 2
2372
+ },
2373
+ "characters": {
2374
+ "available": 0,
2375
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47900/characters",
2376
+ "items": [
2377
+
2378
+ ],
2379
+ "returned": 0
2380
+ },
2381
+ "stories": {
2382
+ "available": 2,
2383
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47900/stories",
2384
+ "items": [
2385
+ {
2386
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108047",
2387
+ "name": "cover from Fantastic Four (2013)",
2388
+ "type": "cover"
2389
+ },
2390
+ {
2391
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108048",
2392
+ "name": "story from Fantastic Four (2013)",
2393
+ "type": "interiorStory"
2394
+ }
2395
+ ],
2396
+ "returned": 2
2397
+ },
2398
+ "events": {
2399
+ "available": 0,
2400
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47900/events",
2401
+ "items": [
2402
+
2403
+ ],
2404
+ "returned": 0
2405
+ }
2406
+ },
2407
+ {
2408
+ "id": 46231,
2409
+ "digitalId": 0,
2410
+ "title": "Marvel Masterworks: Ant-Man/Giant-Man (Trade Paperback)",
2411
+ "issueNumber": 0,
2412
+ "variantDescription": "",
2413
+ "description": "Burned under the magnifying glass of overwhelming demand, Mighty Marvel has given in to bring you our smallest hero in his first big Masterwork! Scientist Hank Pym invented an amazing growth serum and a cybernetic helmet, making him the Astonishing Ant-Man! Teamed with the winsome Wasp, the tiny twosome battle a sensational array of mini- and maxi-sized menaces from the Scarlet Beetle to the Black Knight! And if that&#39;s not enough to occupy a man of science, he&#39;s also defending the good ol&#39; U.S. of A.&#39;s secrets from the Commie hordes! But we&#39;ve got more than just miniature mayhem for you, True Believer &mdash; you can also look forward to the birth of the biggest Avenger there ever was: Giant-Man! So reserve your copy today! Collecting material from TALES TO ASTONISH (1959) #27 and #35-52.",
2414
+ "modified": "2013-11-22T16:30:27-0500",
2415
+ "isbn": "978-0-7851-6768-6",
2416
+ "upc": "",
2417
+ "diamondCode": "SEP130785",
2418
+ "ean": "9780785 167686 52499",
2419
+ "issn": "",
2420
+ "format": "Trade Paperback",
2421
+ "pageCount": 288,
2422
+ "textObjects": [
2423
+ {
2424
+ "type": "issue_solicit_text",
2425
+ "language": "en-us",
2426
+ "text": "Burned under the magnifying glass of overwhelming demand, Mighty Marvel has given in to bring you our smallest hero in his first big Masterwork! Scientist Hank Pym invented an amazing growth serum and a cybernetic helmet, making him the Astonishing Ant-Man! Teamed with the winsome Wasp, the tiny twosome battle a sensational array of mini- and maxi-sized menaces from the Scarlet Beetle to the Black Knight! And if that&#39;s not enough to occupy a man of science, he&#39;s also defending the good ol&#39; U.S. of A.&#39;s secrets from the Commie hordes! But we&#39;ve got more than just miniature mayhem for you, True Believer &mdash; you can also look forward to the birth of the biggest Avenger there ever was: Giant-Man! So reserve your copy today! Collecting material from TALES TO ASTONISH (1959) #27 and #35-52."
2427
+ }
2428
+ ],
2429
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/46231",
2430
+ "urls": [
2431
+ {
2432
+ "type": "detail",
2433
+ "url": "http://marvel.com/comics/collection/46231/marvel_masterworks_ant-mangiant-man_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2434
+ }
2435
+ ],
2436
+ "series": {
2437
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/17426",
2438
+ "name": "Marvel Masterworks: Ant-Man/Giant-Man (2013)"
2439
+ },
2440
+ "variants": [
2441
+
2442
+ ],
2443
+ "collections": [
2444
+
2445
+ ],
2446
+ "collectedIssues": [
2447
+
2448
+ ],
2449
+ "dates": [
2450
+ {
2451
+ "type": "onsaleDate",
2452
+ "date": "2013-11-27T00:00:00-0500"
2453
+ },
2454
+ {
2455
+ "type": "focDate",
2456
+ "date": "2013-11-12T00:00:00-0500"
2457
+ }
2458
+ ],
2459
+ "prices": [
2460
+ {
2461
+ "type": "printPrice",
2462
+ "price": 24.99
2463
+ }
2464
+ ],
2465
+ "thumbnail": {
2466
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/f/00/528faaa502efe",
2467
+ "extension": "jpg"
2468
+ },
2469
+ "images": [
2470
+ {
2471
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/f/00/528faaa502efe",
2472
+ "extension": "jpg"
2473
+ }
2474
+ ],
2475
+ "creators": {
2476
+ "available": 7,
2477
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46231/creators",
2478
+ "items": [
2479
+ {
2480
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/263",
2481
+ "name": "Dick Ayers",
2482
+ "role": "artist"
2483
+ },
2484
+ {
2485
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/305",
2486
+ "name": "Don Heck",
2487
+ "role": "artist"
2488
+ },
2489
+ {
2490
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/945",
2491
+ "name": "Larry Lieber",
2492
+ "role": "artist"
2493
+ },
2494
+ {
2495
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9983",
2496
+ "name": "Ernie Hart",
2497
+ "role": "writer"
2498
+ },
2499
+ {
2500
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2501
+ "name": "Stan Lee",
2502
+ "role": "writer"
2503
+ },
2504
+ {
2505
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
2506
+ "name": "Richard Isanove",
2507
+ "role": "penciller (cover)"
2508
+ },
2509
+ {
2510
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
2511
+ "name": "Jack Kirby",
2512
+ "role": "penciller (cover)"
2513
+ }
2514
+ ],
2515
+ "returned": 7
2516
+ },
2517
+ "characters": {
2518
+ "available": 0,
2519
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46231/characters",
2520
+ "items": [
2521
+
2522
+ ],
2523
+ "returned": 0
2524
+ },
2525
+ "stories": {
2526
+ "available": 2,
2527
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46231/stories",
2528
+ "items": [
2529
+ {
2530
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/104022",
2531
+ "name": "cover from Marvel Masterworks: Ant-Man/Giant-Man (2013)",
2532
+ "type": "cover"
2533
+ },
2534
+ {
2535
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/104023",
2536
+ "name": "story from Marvel Masterworks: Ant-Man/Giant-Man (2013)",
2537
+ "type": "interiorStory"
2538
+ }
2539
+ ],
2540
+ "returned": 2
2541
+ },
2542
+ "events": {
2543
+ "available": 0,
2544
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46231/events",
2545
+ "items": [
2546
+
2547
+ ],
2548
+ "returned": 0
2549
+ }
2550
+ },
2551
+ {
2552
+ "id": 46232,
2553
+ "digitalId": 0,
2554
+ "title": "Marvel Masterworks: Ant-Man/Giant-Man (Trade Paperback)",
2555
+ "issueNumber": 0,
2556
+ "variantDescription": "",
2557
+ "description": "Burned under the magnifying glass of overwhelming demand, Mighty Marvel has given in to bring you our smallest hero in his first big Masterwork! Scientist Hank Pym invented an amazing growth serum and a cybernetic helmet, making him the Astonishing Ant-Man! Teamed with the winsome Wasp, the tiny twosome battle a sensational array of mini- and maxi-sized menaces from the Scarlet Beetle to the Black Knight! And if that&#39;s not enough to occupy a man of science, he&#39;s also defending the good ol&#39; U.S. of A.&#39;s secrets from the Commie hordes! But we&#39;ve got more than just miniature mayhem for you, True Believer &mdash; you can also look forward to the birth of the biggest Avenger there ever was: Giant-Man! So reserve your copy today! Collecting material from TALES TO ASTONISH (1959) #27 and #35-52.",
2558
+ "modified": "2013-11-22T16:30:27-0500",
2559
+ "isbn": "978-0-7851-6769-3",
2560
+ "upc": "",
2561
+ "diamondCode": "SEP130786",
2562
+ "ean": "9780785 167693 52499",
2563
+ "issn": "",
2564
+ "format": "Trade Paperback",
2565
+ "pageCount": 288,
2566
+ "textObjects": [
2567
+ {
2568
+ "type": "issue_solicit_text",
2569
+ "language": "en-us",
2570
+ "text": "Burned under the magnifying glass of overwhelming demand, Mighty Marvel has given in to bring you our smallest hero in his first big Masterwork! Scientist Hank Pym invented an amazing growth serum and a cybernetic helmet, making him the Astonishing Ant-Man! Teamed with the winsome Wasp, the tiny twosome battle a sensational array of mini- and maxi-sized menaces from the Scarlet Beetle to the Black Knight! And if that&#39;s not enough to occupy a man of science, he&#39;s also defending the good ol&#39; U.S. of A.&#39;s secrets from the Commie hordes! But we&#39;ve got more than just miniature mayhem for you, True Believer &mdash; you can also look forward to the birth of the biggest Avenger there ever was: Giant-Man! So reserve your copy today! Collecting material from TALES TO ASTONISH (1959) #27 and #35-52."
2571
+ }
2572
+ ],
2573
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/46232",
2574
+ "urls": [
2575
+ {
2576
+ "type": "detail",
2577
+ "url": "http://marvel.com/comics/collection/46232/marvel_masterworks_ant-mangiant-man_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2578
+ }
2579
+ ],
2580
+ "series": {
2581
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/17427",
2582
+ "name": "Marvel Masterworks: Ant-Man/Giant-Man (2013)"
2583
+ },
2584
+ "variants": [
2585
+
2586
+ ],
2587
+ "collections": [
2588
+
2589
+ ],
2590
+ "collectedIssues": [
2591
+
2592
+ ],
2593
+ "dates": [
2594
+ {
2595
+ "type": "onsaleDate",
2596
+ "date": "2013-11-27T00:00:00-0500"
2597
+ },
2598
+ {
2599
+ "type": "focDate",
2600
+ "date": "2013-11-12T00:00:00-0500"
2601
+ }
2602
+ ],
2603
+ "prices": [
2604
+ {
2605
+ "type": "printPrice",
2606
+ "price": 24.99
2607
+ }
2608
+ ],
2609
+ "thumbnail": {
2610
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/2/50/528facb5ec7ad",
2611
+ "extension": "jpg"
2612
+ },
2613
+ "images": [
2614
+ {
2615
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/2/50/528facb5ec7ad",
2616
+ "extension": "jpg"
2617
+ }
2618
+ ],
2619
+ "creators": {
2620
+ "available": 7,
2621
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46232/creators",
2622
+ "items": [
2623
+ {
2624
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/263",
2625
+ "name": "Dick Ayers",
2626
+ "role": "artist"
2627
+ },
2628
+ {
2629
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/305",
2630
+ "name": "Don Heck",
2631
+ "role": "artist"
2632
+ },
2633
+ {
2634
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/945",
2635
+ "name": "Larry Lieber",
2636
+ "role": "artist"
2637
+ },
2638
+ {
2639
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/9983",
2640
+ "name": "Ernie Hart",
2641
+ "role": "writer"
2642
+ },
2643
+ {
2644
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2645
+ "name": "Stan Lee",
2646
+ "role": "writer"
2647
+ },
2648
+ {
2649
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/798",
2650
+ "name": "Richard Isanove",
2651
+ "role": "penciller (cover)"
2652
+ },
2653
+ {
2654
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/196",
2655
+ "name": "Jack Kirby",
2656
+ "role": "penciller (cover)"
2657
+ }
2658
+ ],
2659
+ "returned": 7
2660
+ },
2661
+ "characters": {
2662
+ "available": 0,
2663
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46232/characters",
2664
+ "items": [
2665
+
2666
+ ],
2667
+ "returned": 0
2668
+ },
2669
+ "stories": {
2670
+ "available": 2,
2671
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46232/stories",
2672
+ "items": [
2673
+ {
2674
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/104024",
2675
+ "name": "cover",
2676
+ "type": "cover"
2677
+ },
2678
+ {
2679
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/104025",
2680
+ "name": "story",
2681
+ "type": "interiorStory"
2682
+ }
2683
+ ],
2684
+ "returned": 2
2685
+ },
2686
+ "events": {
2687
+ "available": 0,
2688
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/46232/events",
2689
+ "items": [
2690
+
2691
+ ],
2692
+ "returned": 0
2693
+ }
2694
+ },
2695
+ {
2696
+ "id": 47895,
2697
+ "digitalId": 0,
2698
+ "title": "Amazing Spider-Man Epic Collection: Cosmic Adventures (Trade Paperback)",
2699
+ "issueNumber": 0,
2700
+ "variantDescription": "",
2701
+ "description": "With great power comes great responsibility, but what happens with unlimited cosmic power?\nWhen a science experiment goes wrong, Peter Parker's spider-powers are enhanced to an unbelievable degree! And the timing can't be beat — because with a cabal of deadly villains unleashing unpredictable attacks on Marvel's heroes, Spider-Man will need all his newfound might just to survive! But who or what is the real force behind Spidey's cosmic empowerment? And what battle is he destined to fight? Plus: Spider-Man teams up with the Punisher, deals with the return of Venom and battles the shrunken Psycho-Man in a totally tiny adventure! Guest-starring the Hulk, Magneto, Dr. Doom, the Frightful Four and more! Collecting AMAZING SPIDER-MAN (1963) #326-333 and ANNUAL #24, SPECTACULAR SPIDER-MAN (1976) #158-160 and ANNUAL #10, and WEB OF SPIDER-MAN (1985) #59-61 and ANNUAL #6.\n",
2702
+ "modified": "2013-11-12T15:45:10-0500",
2703
+ "isbn": "978-0-7851-8789-9",
2704
+ "upc": "",
2705
+ "diamondCode": "AUG130895",
2706
+ "ean": "9780785 187899 53999",
2707
+ "issn": "",
2708
+ "format": "Trade Paperback",
2709
+ "pageCount": 504,
2710
+ "textObjects": [
2711
+ {
2712
+ "type": "issue_solicit_text",
2713
+ "language": "en-us",
2714
+ "text": "With great power comes great responsibility, but what happens with unlimited cosmic power?\nWhen a science experiment goes wrong, Peter Parker's spider-powers are enhanced to an unbelievable degree! And the timing can't be beat — because with a cabal of deadly villains unleashing unpredictable attacks on Marvel's heroes, Spider-Man will need all his newfound might just to survive! But who or what is the real force behind Spidey's cosmic empowerment? And what battle is he destined to fight? Plus: Spider-Man teams up with the Punisher, deals with the return of Venom and battles the shrunken Psycho-Man in a totally tiny adventure! Guest-starring the Hulk, Magneto, Dr. Doom, the Frightful Four and more! Collecting AMAZING SPIDER-MAN (1963) #326-333 and ANNUAL #24, SPECTACULAR SPIDER-MAN (1976) #158-160 and ANNUAL #10, and WEB OF SPIDER-MAN (1985) #59-61 and ANNUAL #6.\n"
2715
+ }
2716
+ ],
2717
+ "resourceURI": "http://gateway.marvel.com/v1/public/comics/47895",
2718
+ "urls": [
2719
+ {
2720
+ "type": "detail",
2721
+ "url": "http://marvel.com/comics/collection/47895/amazing_spider-man_epic_collection_cosmic_adventures_trade_paperback?utm_campaign=apiRef&utm_source=94f945fe8833c9a96e6f761b60562a45"
2722
+ }
2723
+ ],
2724
+ "series": {
2725
+ "resourceURI": "http://gateway.marvel.com/v1/public/series/18084",
2726
+ "name": "Amazing Spider-Man Epic Collection: Cosmic Adventures (2013)"
2727
+ },
2728
+ "variants": [
2729
+
2730
+ ],
2731
+ "collections": [
2732
+
2733
+ ],
2734
+ "collectedIssues": [
2735
+
2736
+ ],
2737
+ "dates": [
2738
+ {
2739
+ "type": "onsaleDate",
2740
+ "date": "2013-11-20T00:00:00-0500"
2741
+ },
2742
+ {
2743
+ "type": "focDate",
2744
+ "date": "2013-11-05T00:00:00-0500"
2745
+ }
2746
+ ],
2747
+ "prices": [
2748
+ {
2749
+ "type": "printPrice",
2750
+ "price": 39.99
2751
+ }
2752
+ ],
2753
+ "thumbnail": {
2754
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/4/00/5282681b56cf9",
2755
+ "extension": "jpg"
2756
+ },
2757
+ "images": [
2758
+ {
2759
+ "path": "http://i.annihil.us/u/prod/marvel/i/mg/4/00/5282681b56cf9",
2760
+ "extension": "jpg"
2761
+ }
2762
+ ],
2763
+ "creators": {
2764
+ "available": 10,
2765
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47895/creators",
2766
+ "items": [
2767
+ {
2768
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/105",
2769
+ "name": "Sal Buscema",
2770
+ "role": "penciller (cover)"
2771
+ },
2772
+ {
2773
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/954",
2774
+ "name": "Gerry Conway",
2775
+ "role": "writer"
2776
+ },
2777
+ {
2778
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/30",
2779
+ "name": "Stan Lee",
2780
+ "role": "writer"
2781
+ },
2782
+ {
2783
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/2784",
2784
+ "name": "David Michelinie",
2785
+ "role": "writer"
2786
+ },
2787
+ {
2788
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/32",
2789
+ "name": "Steve Ditko",
2790
+ "role": "artist"
2791
+ },
2792
+ {
2793
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1034",
2794
+ "name": "Colleen Doran",
2795
+ "role": "artist"
2796
+ },
2797
+ {
2798
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/148",
2799
+ "name": "Gil Kane",
2800
+ "role": "artist"
2801
+ },
2802
+ {
2803
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/704",
2804
+ "name": "Erik Larsen",
2805
+ "role": "artist"
2806
+ },
2807
+ {
2808
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/75",
2809
+ "name": "Todd McFarlane",
2810
+ "role": "artist"
2811
+ },
2812
+ {
2813
+ "resourceURI": "http://gateway.marvel.com/v1/public/creators/1164",
2814
+ "name": "Alex Saviuk",
2815
+ "role": "artist"
2816
+ }
2817
+ ],
2818
+ "returned": 10
2819
+ },
2820
+ "characters": {
2821
+ "available": 0,
2822
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47895/characters",
2823
+ "items": [
2824
+
2825
+ ],
2826
+ "returned": 0
2827
+ },
2828
+ "stories": {
2829
+ "available": 2,
2830
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47895/stories",
2831
+ "items": [
2832
+ {
2833
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108037",
2834
+ "name": "cover from Amazing Spider-Man Epic Collection: Cosmic Adventures (2013)",
2835
+ "type": "cover"
2836
+ },
2837
+ {
2838
+ "resourceURI": "http://gateway.marvel.com/v1/public/stories/108038",
2839
+ "name": "story from Amazing Spider-Man Epic Collection: Cosmic Adventures (2013)",
2840
+ "type": "interiorStory"
2841
+ }
2842
+ ],
2843
+ "returned": 2
2844
+ },
2845
+ "events": {
2846
+ "available": 0,
2847
+ "collectionURI": "http://gateway.marvel.com/v1/public/comics/47895/events",
2848
+ "items": [
2849
+
2850
+ ],
2851
+ "returned": 0
2852
+ }
2853
+ }
2854
+ ]
2855
+ }
2856
+ }