marvel 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48f78f0190b43be079ac3342baad4ac4a866c95b
4
- data.tar.gz: 5a5fe72d3f0047482042b5caa3f2491dcc1218a1
3
+ metadata.gz: eccd1fa83025feb367f1a83be48ffa7541e093a7
4
+ data.tar.gz: 7601b4ee536f5099cda3d49f60c4f08bd70c916f
5
5
  SHA512:
6
- metadata.gz: 2eb3e731aa2a1598572e63c4b24de63f21a35c57be49daa3b07b8a7bae160c002739db35f5719d8a3b52d5673ccf5392b44f184c5e61cc0293d5a4d1c6d8f432
7
- data.tar.gz: 2a0669a140a8df04e4c757ec33468106da6077f9f8e2356d06a16fa7e16dc6cd45ee160c403a156efae86a712255cd0a500f2415d00836e0b0c97b7ef3baeea5
6
+ metadata.gz: 8b480c3fecc007227ce036bd921ddc3db0df00a93dac8d504f4ac75d9b7c1c2e4925ffe218a0696e02c3d1806e678c29c92f01723f1b98e0325b8ff150d054a0
7
+ data.tar.gz: f4e5819f5df378f06c55c65505e661aac1557e2a8140cf7b031b6f90692972aa7745d572b731a9a2dbe1d5d566a85848dc0c49f84f320f65232a9f95e5d0cf87
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2
4
+
5
+ * Test coverage begins
6
+
3
7
  ## 0.1
4
8
 
5
9
  * Initial release
data/Gemfile CHANGED
@@ -1,17 +1,12 @@
1
1
  source "https://rubygems.org"
2
- # Add dependencies required to use your gem here.
3
- # Example:
4
- # gem "activesupport", ">= 2.3.5"
5
- # gem "activeresource", "~> 4.0.0"
6
- # gem "httparty"
7
- gem "her"
8
2
 
9
- # Add dependencies to develop your gem here.
10
- # Include everything needed to run rake, tests, features, etc.
3
+ gem "her", "~> 0.6"
4
+
11
5
  group :development do
12
6
  gem "shoulda", ">= 0"
13
7
  gem "rdoc", "~> 3.12"
14
8
  gem "bundler", "~> 1.0"
15
9
  gem "jeweler", "~> 2.0.1"
16
10
  gem "simplecov", ">= 0"
11
+ gem "fakeweb"
17
12
  end
data/README.md CHANGED
@@ -1,8 +1,28 @@
1
- # marvel
1
+ # Marvel
2
2
 
3
- ## Ruby wrapper for Marvel Comics API
3
+ *Ruby [Marvel Comics API](http://developer.marvel.com) library*
4
4
 
5
- ## Contributing to marvel
5
+ > *Excelsior!*
6
+
7
+ ## About
8
+
9
+ This is a ruby wrapper for the Marvel Comics API.
10
+
11
+ On January 31, 2014 Marvel Comics announced a beta API connecting to Marvel's database of comics, characters, and creators.
12
+ (Press release: *[Marvel Announces the Release of the API Program](http://nx.is/pbP7)*)
13
+
14
+
15
+ ## Install
16
+
17
+ ```
18
+ gem install marvel
19
+ ```
20
+
21
+ ## Documentation & Examples
22
+
23
+ documentation, examples coming soon
24
+
25
+ ### Contributing to marvel
6
26
 
7
27
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
28
  * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
@@ -12,8 +32,7 @@
12
32
  * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
33
  * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
34
 
15
- ## Copyright
35
+ ### Copyright
16
36
 
17
- Copyright (c) 2014 Matt Petty. See LICENSE.txt for
18
- further details.
37
+ Copyright © 2014 Matt Petty. See LICENSE.txt for further details.
19
38
 
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
18
18
  gem.homepage = "http://github.com/lodestone/marvel"
19
19
  gem.license = "MIT"
20
20
  gem.summary = %Q{Marvel Comics API in ruby}
21
- gem.description = %Q{Ruby wrapper (using activeresource) for Marvel Comics developer API}
21
+ gem.description = %Q{Ruby Marvel Comics API library}
22
22
  gem.email = "matt@kizmeta.com"
23
23
  gem.authors = ["Matt Petty"]
24
24
  # dependencies defined in Gemfile
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.1.0
@@ -1,84 +1,38 @@
1
- require "her"
2
- require "json"
3
- require "digest/md5"
4
-
5
- module Her
6
- module Model
7
- module Introspection
8
- extend ActiveSupport::Concern
9
- def inspect
10
- resource_path = begin
11
- request_path
12
- rescue Her::Errors::PathError => e
13
- "<unknown path, missing `#{e.missing_parameter}`>"
14
- end
1
+ # $LOAD_PATH << File.expand_path(File.dirname(__FILE__) + '/../lib')
15
2
 
16
- "#<#{self.class}(#{resource_path}) #{attributes.keys.map { |k| "#{k}=#{attribute_for_inspect(attributes[k])}" }.join(" ")}>"
17
- end
18
- end
19
- end
20
- end
3
+ require "digest/md5"
4
+ require "json"
5
+ require "her"
21
6
 
22
- # TODO: Let these variables come from a config file
23
- MARVEL_PUBLIC_KEY = ENV["MARVEL_PUBLIC_KEY"]
24
- MARVEL_PRIVATE_KEY = ENV["MARVEL_PRIVATE_KEY"]
25
- MARVEL_TIMESTAMP = DateTime.now.to_s
26
- MARVEL_HASH = Digest::MD5.hexdigest("#{MARVEL_TIMESTAMP}#{MARVEL_PRIVATE_KEY}#{MARVEL_PUBLIC_KEY}")
27
- DEFAULT_PARAMS = "apikey=#{MARVEL_PUBLIC_KEY}&ts=#{MARVEL_TIMESTAMP}&hash=#{MARVEL_HASH}"
7
+ module Marvel
28
8
 
29
- class SetAuthParams < Faraday::Middleware
30
- def call(env)
31
- env[:url].query = DEFAULT_PARAMS
32
- @app.call(env)
33
- end
34
- end
9
+ # TODO: Let these variables come from a config file or pass them in
10
+ PUBLIC_KEY = ENV["MARVEL_PUBLIC_KEY"]
11
+ PRIVATE_KEY = ENV["MARVEL_PRIVATE_KEY"]
12
+ TIMESTAMP = DateTime.now.to_s
13
+ URL_HASH = Digest::MD5.hexdigest("#{TIMESTAMP}#{PRIVATE_KEY}#{PUBLIC_KEY}")
14
+ DEFAULT_PARAMS = "apikey=#{PUBLIC_KEY}&ts=#{TIMESTAMP}&hash=#{URL_HASH}"
15
+ BASE_URL = "http://gateway.marvel.com/v1/public"
35
16
 
36
- class MarvelParser < Faraday::Response::Middleware
37
- def on_complete(env)
38
- json = JSON.parse(env[:body], :symbolize_names => true)
39
- json = json[:data][:results] || json[:data][:result]
40
- errors = json.delete(:errors) || {}
41
- metadata = json.delete(:metadata) || []
42
- env[:body] = { :data => json, :errors => errors, :metadata => metadata }
17
+ class MarvelError < Exception
43
18
  end
44
- end
45
-
46
- Her::API.setup url: "https://gateway.marvel.com/v1/public" do |c|
47
- c.use SetAuthParams
48
- # Request
49
- c.use Faraday::Request::UrlEncoded
50
- # Response
51
- c.use MarvelParser
52
- # Adapter
53
- c.use Faraday::Adapter::NetHttp
54
- end
55
19
 
56
- module Marvel;end
57
-
58
-
59
- # TODO: Watch these and see if they make sense breaking out into separate files
60
- class Marvel::Base
61
- include Her::Model
62
- end
63
-
64
- class Marvel::Character < Marvel::Base
65
- end
66
-
67
- class Marvel::Comic < Marvel::Base
68
- end
69
-
70
- class Marvel::Creator < Marvel::Base
71
- end
72
-
73
- class Marvel::Event < Marvel::Base
74
20
  end
75
21
 
76
- class Marvel::Series < Marvel::Base
77
- end
22
+ require "marvel/her_introspection"
23
+ require "marvel/middleware"
78
24
 
79
- class Marvel::Story < Marvel::Base
25
+ Her::API.setup url: Marvel::BASE_URL do |c|
26
+ c.use Marvel::SetAuthParams # Authentication
27
+ c.use Faraday::Request::UrlEncoded # Request
28
+ c.use Marvel::JsonParser # Response
29
+ c.use Faraday::Adapter::NetHttp # Adapter
80
30
  end
81
31
 
82
-
83
-
84
-
32
+ require "marvel/base"
33
+ require "marvel/character"
34
+ require "marvel/comic"
35
+ require "marvel/creator"
36
+ require "marvel/event"
37
+ require "marvel/series"
38
+ require "marvel/story"
@@ -0,0 +1,11 @@
1
+ class Marvel::Base
2
+
3
+ include Her::Model
4
+
5
+ def id
6
+ resourceURI.split("/").last
7
+ end
8
+
9
+ # def url; resourceURI; end
10
+
11
+ end
@@ -0,0 +1,7 @@
1
+ class Marvel::Character < Marvel::Base
2
+ # Attributes => ["id", "name", "description", "modified", "thumbnail", "resourceURI", "comics", "series", "stories", "events", "urls"]
3
+ has_many :comics
4
+ has_many :events
5
+ has_many :stories
6
+ end
7
+
@@ -0,0 +1,8 @@
1
+ class Marvel::Comic < Marvel::Base
2
+ # Attributes => ["id", "digitalId", "title", "issueNumber", "variantDescription", "description", "modified", "isbn", "upc", "diamondCode", "ean", "issn", "format", "pageCount", "textObjects", "resourceURI", "urls", "series", "variants", "collections", "collectedIssues", "dates", "prices", "thumbnail", "images", "creators", "characters", "stories", "events"]
3
+ has_many :characters
4
+ has_many :creators
5
+ has_many :events
6
+ has_many :stories
7
+ end
8
+
@@ -0,0 +1,6 @@
1
+ class Marvel::Creator < Marvel::Base
2
+ # Attributes => ["resourceURI", "name", "role", "comic"]
3
+ has_many :comics
4
+ has_many :events
5
+ has_many :stories
6
+ end
@@ -0,0 +1,7 @@
1
+ class Marvel::Event < Marvel::Base
2
+ # Attributes => ["id", "title", "description", "resourceURI", "urls", "modified", "start", "end", "thumbnail", "creators", "characters", "stories", "comics", "series", "next", "previous"]
3
+ has_many :characters
4
+ has_many :comics
5
+ has_many :creators
6
+ has_many :stories
7
+ end
@@ -0,0 +1,17 @@
1
+ module Her
2
+ module Model
3
+ module Introspection
4
+ # Monkey patch this method to use attributes[k] instead of send
5
+ def inspect
6
+ resource_path = begin
7
+ request_path
8
+ rescue Her::Errors::PathError => e
9
+ "<unknown path, missing `#{e.missing_parameter}`>"
10
+ end
11
+
12
+ "#<#{self.class}(#{resource_path}) #{attributes.keys.map { |k| "#{k}=#{attribute_for_inspect(attributes[k])}" }.join(" ")}>"
13
+ end
14
+ end
15
+ end
16
+ end
17
+
@@ -0,0 +1,32 @@
1
+ class Marvel::SetAuthParams < Faraday::Middleware
2
+ def call(env)
3
+ env[:url].query = "#{Marvel::DEFAULT_PARAMS}&#{env[:url].query}"
4
+ @app.call(env)
5
+ end
6
+ end
7
+
8
+ class Marvel::JsonParser < Faraday::Response::Middleware
9
+ def on_complete(env)
10
+ json = JSON.parse(env[:body], :symbolize_names => true)
11
+ if json[:code] == 200
12
+ json = json[:data][:results] || json[:data][:result]
13
+ json.each do |j|
14
+ j[:characters] = j[:characters][:items] if j[:characters].present?
15
+ j[:comics] = j[:comics][:items] if j[:comics].present?
16
+ j[:creators] = j[:creators][:items] if j[:creators].present?
17
+ j[:events] = j[:events][:items] if j[:events].present?
18
+ j[:series] = j[:series][:items] if j[:series].present?
19
+ j[:stories] = j[:stories][:items] if j[:stories].present?
20
+ end
21
+ # TODO: We don't *alwyas* want to do this
22
+ json = json.first if json.length == 1
23
+ errors = json.delete(:errors) || {}
24
+ metadata = json.delete(:metadata) || []
25
+ env[:body] = { :data => json, :errors => errors, :metadata => metadata }
26
+ else
27
+ # TODO: Raise an error
28
+ env[:body] = { :data => json, :errors => json[:status], :metadata => metadata }
29
+ end
30
+ end
31
+ end
32
+
@@ -0,0 +1,8 @@
1
+ class Marvel::Series < Marvel::Base
2
+ # Attributes => ["available", "collectionURI", "items", "returned"]
3
+ has_many :characters
4
+ has_many :comics
5
+ has_many :creators
6
+ has_many :events
7
+ has_many :stories
8
+ end
@@ -0,0 +1,7 @@
1
+ class Marvel::Story < Marvel::Base
2
+ # Attributes => ["resourceURI", "name", "type", "character"]
3
+ has_many :characters
4
+ has_many :comics
5
+ has_many :creators
6
+ has_many :events
7
+ end
@@ -2,17 +2,17 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: marvel 0.0.1 ruby lib
5
+ # stub: marvel 0.1.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "marvel"
9
- s.version = "0.0.1"
9
+ s.version = "0.1.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Matt Petty"]
14
- s.date = "2014-02-02"
15
- s.description = "Ruby wrapper (using activeresource) for Marvel Comics developer API"
14
+ s.date = "2014-02-04"
15
+ s.description = "Ruby Marvel Comics API library"
16
16
  s.email = "matt@kizmeta.com"
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE.txt",
@@ -27,8 +27,25 @@ Gem::Specification.new do |s|
27
27
  "Rakefile",
28
28
  "VERSION",
29
29
  "lib/marvel.rb",
30
+ "lib/marvel/base.rb",
31
+ "lib/marvel/character.rb",
32
+ "lib/marvel/comic.rb",
33
+ "lib/marvel/creator.rb",
34
+ "lib/marvel/event.rb",
35
+ "lib/marvel/her_introspection.rb",
36
+ "lib/marvel/middleware.rb",
37
+ "lib/marvel/series.rb",
38
+ "lib/marvel/story.rb",
30
39
  "marvel.gemspec",
40
+ "test/fixtures/characters.json",
41
+ "test/fixtures/comics.json",
42
+ "test/fixtures/creators.json",
43
+ "test/fixtures/events.json",
44
+ "test/fixtures/series.json",
45
+ "test/fixtures/spidey.json",
46
+ "test/fixtures/stories.json",
31
47
  "test/helper.rb",
48
+ "test/test_characters.rb",
32
49
  "test/test_marvel.rb"
33
50
  ]
34
51
  s.homepage = "http://github.com/lodestone/marvel"
@@ -40,27 +57,30 @@ Gem::Specification.new do |s|
40
57
  s.specification_version = 4
41
58
 
42
59
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
- s.add_runtime_dependency(%q<her>, [">= 0"])
60
+ s.add_runtime_dependency(%q<her>, ["~> 0.6"])
44
61
  s.add_development_dependency(%q<shoulda>, [">= 0"])
45
62
  s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
46
63
  s.add_development_dependency(%q<bundler>, ["~> 1.0"])
47
64
  s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
48
65
  s.add_development_dependency(%q<simplecov>, [">= 0"])
66
+ s.add_development_dependency(%q<fakeweb>, [">= 0"])
49
67
  else
50
- s.add_dependency(%q<her>, [">= 0"])
68
+ s.add_dependency(%q<her>, ["~> 0.6"])
51
69
  s.add_dependency(%q<shoulda>, [">= 0"])
52
70
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
53
71
  s.add_dependency(%q<bundler>, ["~> 1.0"])
54
72
  s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
55
73
  s.add_dependency(%q<simplecov>, [">= 0"])
74
+ s.add_dependency(%q<fakeweb>, [">= 0"])
56
75
  end
57
76
  else
58
- s.add_dependency(%q<her>, [">= 0"])
77
+ s.add_dependency(%q<her>, ["~> 0.6"])
59
78
  s.add_dependency(%q<shoulda>, [">= 0"])
60
79
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
61
80
  s.add_dependency(%q<bundler>, ["~> 1.0"])
62
81
  s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
63
82
  s.add_dependency(%q<simplecov>, [">= 0"])
83
+ s.add_dependency(%q<fakeweb>, [">= 0"])
64
84
  end
65
85
  end
66
86
 
@@ -0,0 +1,8 @@
1
+ HTTP/1.1 200 OK
2
+ Connection: close
3
+ ETag: fde7181cfa2ab528c9d6d5721bff76291c4bb761
4
+ Content-Type: application/json
5
+ Content-Length: 78811
6
+ Date: Tue, 04 Feb 2014 03:54:29 GMT
7
+
8
+ {"code":200,"status":"Ok","etag":"fde7181cfa2ab528c9d6d5721bff76291c4bb761","data":{"offset":0,"limit":20,"total":1402,"count":20,"results":[{"id":1009521,"name":" Hank Pym","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/c0/4ce5a0e31f109","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009521","comics":{"available":44,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009521/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35533","name":"Amazing Spider-Man (1999) #661"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39041","name":"Amazing Spider-Man (1999) #661 (X-Men Art Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35534","name":"Amazing Spider-Man (1999) #662"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7336","name":"Avengers (1963) #83"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7353","name":"Avengers (1963) #99"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6995","name":"Avengers (1963) #138"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7004","name":"Avengers (1963) #146"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7015","name":"Avengers (1963) #156"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29213","name":"Avengers Academy (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36770","name":"Avengers Academy (2010) #1 (2ND PRINTING VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34490","name":"Avengers Academy (2010) #1 (DJURDJEVIC VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29217","name":"Avengers Academy (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36482","name":"Avengers Academy (2010) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36479","name":"Avengers Academy (2010) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36489","name":"Avengers Academy (2010) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29324","name":"Avengers Academy Vol 1 : Permanent Record TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6040","name":"Beyond! (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4447","name":"Beyond! (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30015","name":"Incredible Hulks (2009) #607 (MCGUINNESS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13477","name":"Mighty Avengers (2007) #3"}],"returned":20},"series":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009521/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9086","name":"Avengers Academy (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10037","name":"Avengers Academy Vol 1 : Permanent Record TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1928","name":"Beyond! (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/997","name":"Beyond! (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8842","name":"Incredible Hulks (2009 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1866","name":"Mighty Avengers (2007 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5381","name":"Mighty Avengers Vol. 1: The Ultron Initiative (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12877","name":"The Iron Age (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2715","name":"Women of Marvel Vol. 2 (2007)"}],"returned":11},"stories":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009521/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5621","name":"1 of 6 - 6XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8682","name":"3 of 6 - Ultron; THE INITIATIVE BANNER","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14528","name":"Stranger in a Strange Man!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14546","name":"The Assassin Never Fails!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14568","name":"The Private War of Doctor Doom!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15235","name":"Come On In, The Revolution's Fine","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15269","name":"They First Make Mad","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32378","name":"4 of 6 - Ultron; THE INITIATIVE BANNER","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36886","name":"Venom Bomb 2 of 5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44681","name":"Venom Bomb 5 of 5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47781","name":"Secret Invasion 6 of 8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52267","name":"2 of 6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52726","name":"3 of 6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53148","name":"1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53543","name":"1 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57228","name":"Interior #57228","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57230","name":"Interior #57230","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57232","name":"Interior #57232","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57234","name":"Interior #57234","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57236","name":"Interior #57236","type":"interiorStory"}],"returned":20},"events":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009521/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered Heroes"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"}],"returned":6},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009521/_hank_pym?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011334,"name":"3-D Man","description":"","modified":"2010-11-30T15:16:53-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/4c002e4aa7e27","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","comics":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011334/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21366","name":"Avengers: The Initiative (2007) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24571","name":"Avengers: The Initiative (2007) #14 (SPOTLIGHT VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21546","name":"Avengers: The Initiative (2007) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21741","name":"Avengers: The Initiative (2007) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21975","name":"Avengers: The Initiative (2007) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22299","name":"Avengers: The Initiative (2007) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22300","name":"Avengers: The Initiative (2007) #18 (ZOMBIE VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22506","name":"Avengers: The Initiative (2007) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10223","name":"Marvel Premiere (1972) #35"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10224","name":"Marvel Premiere (1972) #36"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10225","name":"Marvel Premiere (1972) #37"}],"returned":11},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011334/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: The Initiative (2007 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel Premiere (1972 - 1981)"}],"returned":2},"stories":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011334/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19947","name":"Cover #19947","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19948","name":"The 3-D Man!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19949","name":"Cover #19949","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19950","name":"The Devil's Music!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19951","name":"Cover #19951","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19952","name":"Code-Name: The Cold Warrior!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47185","name":"Avengers: The Initiative (2007) #14 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47499","name":"Avengers: The Initiative (2007) #15 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47792","name":"Avengers: The Initiative (2007) #16","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47793","name":"Avengers: The Initiative (2007) #16 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/48362","name":"Avengers: The Initiative (2007) #17 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49104","name":"Avengers: The Initiative (2007) #18 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49106","name":"Avengers: The Initiative (2007) #18, Zombie Variant - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49888","name":"Avengers: The Initiative (2007) #19","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49889","name":"Avengers: The Initiative (2007) #19 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54371","name":"Avengers: The Initiative (2007) #14, Spotlight Variant - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/96303","name":"Deadpool (1997) #44","type":"interiorStory"}],"returned":17},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011334/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret Invasion"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011334/3-d_man?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/3-D_Man_(Chandler)?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1017100,"name":"A-Bomb (HAS)","description":"Rick Jones has been Hulk's best bud since day one, but now he's more than a friend...he's a teammate! Transformed by a Gamma energy explosion, A-Bomb's thick, armored skin is just as strong and powerful as it is blue. And when he curls into action, he uses it like a giant bowling ball of destruction! ","modified":"2013-09-18T15:54:04-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/5232158de5b16","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017100","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1017100/a-bomb_has?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1009144,"name":"A.I.M.","description":"AIM is a terrorist organization bent on destroying the world.","modified":"2013-10-17T14:41:30-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/20/52602f21f29ec","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009144","comics":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009144/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36763","name":"Ant-Man & the Wasp (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17553","name":"Avengers (1998) #67"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7340","name":"Avengers (1963) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1170","name":"Avengers Vol. 2: Red Zone (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1214","name":"Avengers Vol. II: Red Zone (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12787","name":"Captain America (1998) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20367","name":"Defenders (1972) #57"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31068","name":"Incredible Hulks (2009) #606 (VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36737","name":"Marvel Adventures Super Heroes (2010) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2110","name":"Marvel Masterworks: Captain America Vol. (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1130","name":"Marvel Masterworks: Captain America Vol. 1 - 2nd Edition (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2319","name":"Marvel Masterworks: Doctor Strange Vol. (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2820","name":"Marvel Masterworks: Doctor Strange Vol. (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2001","name":"Marvel Masterworks: The Invincible Iron Man Vol. (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17468","name":"Marvel Masterworks: The Invincible Iron Man Vol. 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1164","name":"Marvel Masterworks: The Silver Surfer Vol. 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11068","name":"Strange Tales (1951) #146"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11069","name":"Strange Tales (1951) #147"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11070","name":"Strange Tales (1951) #148"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11324","name":"Tales of Suspense (1959) #79"}],"returned":20},"series":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009144/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13082","name":"Ant-Man & the Wasp (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/227","name":"Avengers Vol. 2: Red Zone (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/271","name":"Avengers Vol. II: Red Zone (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1997","name":"Captain America (1998 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3743","name":"Defenders (1972 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8842","name":"Incredible Hulks (2009 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9718","name":"Marvel Adventures Super Heroes (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1506","name":"Marvel Masterworks: Captain America Vol. (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/189","name":"Marvel Masterworks: Captain America Vol. 1 - 2nd Edition (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1468","name":"Marvel Masterworks: Doctor Strange Vol. (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1494","name":"Marvel Masterworks: The Invincible Iron Man Vol. (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3300","name":"Marvel Masterworks: The Invincible Iron Man Vol. 1 (0000 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/222","name":"Marvel Masterworks: The Silver Surfer Vol. 2 (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2076","name":"Strange Tales (1951 - 1968)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2079","name":"Tales of Suspense (1959 - 1968)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2725","name":"Tales of Suspsnse Transport (1959 - 1968)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13213","name":"Taskmaster (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny X-Men (1963 - 2011)"}],"returned":20},"stories":{"available":28,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009144/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10253","name":"When the Unliving Strike","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10255","name":"Cover #10255","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10256","name":"The Enemy Within!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10259","name":"Death Before Dishonor!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10261","name":"Cover #10261","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10262","name":"The End of A.I.M.!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11921","name":"The Red Skull Lives!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11930","name":"He Who Holds the Cosmic Cube","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11936","name":"The Maddening Mystery of the Inconceivable Adaptoid!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11981","name":"If This Be... Modok","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11984","name":"A Time to Die -- A Time to Live!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11995","name":"At the Mercy of the Maggia","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15243","name":"Look Homeward, Avenger","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28233","name":"In Sin Airy X","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28971","name":"[The Brothers Part I]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34426","name":"The Red Skull Lives!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34435","name":"He Who Holds the Cosmic Cube","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34441","name":"The Maddening Mystery of the Inconceivable Adaptoid!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34486","name":"If This Be... Modok","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34489","name":"A Time to Die -- A Time to Live!","type":"interiorStory"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009144/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009144/aim.?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/A.I.M.?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1009146,"name":"Abomination (Emil Blonsky)","description":"Formerly known as Emil Blonsky, a spy of Soviet Yugoslavian origin working for the KGB, the Abomination gained his powers after receiving a dose of gamma radiation similar to that which transformed Bruce Banner into the incredible Hulk.","modified":"2012-03-20T12:32:12-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4ce18691cbf04","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009146","comics":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009146/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17547","name":"Avengers (1998) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17548","name":"Avengers (1998) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1098","name":"Avengers Vol. 1: World Trust (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8557","name":"Earth X (1999) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4241","name":"Earth X (New (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20863","name":"Hulk (2008) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23677","name":"Hulk Vol. 1: Red Hulk (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2499","name":"Hulk: Destruction (2005) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14425","name":"Incredible Hulk (1999) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14428","name":"Incredible Hulk (1999) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14450","name":"Incredible Hulk (1999) #50"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14451","name":"Incredible Hulk (1999) #51"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8948","name":"Incredible Hulk (1962) #137"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9006","name":"Incredible Hulk (1962) #195"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9007","name":"Incredible Hulk (1962) #196"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9125","name":"Incredible Hulk (1962) #314"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9193","name":"Incredible Hulk (1962) #382"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9194","name":"Incredible Hulk (1962) #383"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9195","name":"Incredible Hulk (1962) #384"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9243","name":"Incredible Hulk (1962) #432"}],"returned":20},"series":{"available":24,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009146/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers Vol. 1: World Trust (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"Earth X (New (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6831","name":"Hulk Vol. 1: Red Hulk (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/924","name":"Hulk: Destruction (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/465","name":"Incredible Hulk (1999 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2983","name":"Incredible Hulk Annual (1976 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/212","name":"Incredible Hulk Vol. 4: Abominable (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/244","name":"Incredible Hulk Vol. IV: Abominable (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8842","name":"Incredible Hulks (2009 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2572","name":"Iron Man (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/977","name":"Irredeemable Ant-Man (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2423","name":"Irredeemable Ant-Man Vol. 1: Low-Life (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3722","name":"Killraven (2002 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2437","name":"Killraven Premiere (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1671","name":"Marvel Masterworks: The Incredible Hulk Vol.3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2301","name":"Marvel Super-Heroes (1992 - 1993)"}],"returned":20},"stories":{"available":39,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009146/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4946","name":"4 of 4 - 4XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5496","name":"1 of 6 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12370","name":"Cover #12370","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12372","name":"Whosoever Harms the Hulk..!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18419","name":"[none]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18420","name":"The Stars Mine Enemy","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18537","name":"Warfare In Wonderland!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18539","name":"The Abomination Proclamation!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18776","name":"Cover #18776","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18914","name":"Moving On","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18916","name":"Green Canard","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18918","name":"Small Talk","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19024","name":"Shades of Green","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19081","name":"Who Shall Fear The Green Goliath?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19082","name":"Last Legs","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19119","name":"The Great Astonishment - Chapter One: Auld Lang Syne","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19122","name":"The Great Astonishment - Chapter Two: The Edge of Universal Pain","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19124","name":"The Strangest Story Of All Time!!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19125","name":"The Great Astonishment - Conclusion: It's All True!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24932","name":"Earth X Chapter Seven","type":"interiorStory"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009146/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/253","name":"Infinity Gauntlet"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009146/abomination_emil_blonsky?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Abomination?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1016823,"name":"Abomination (Ultimate)","description":"","modified":"2012-07-10T19:11:52-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1016823","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15717","name":"Ultimate X-Men (2000) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1151","name":"Ultimate X-Men Vol. 6: Return of the King (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1186","name":"Ultimate X-Men Vol. VI: Return of the King (Trade Paperback)"}],"returned":3},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/474","name":"Ultimate X-Men (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/210","name":"Ultimate X-Men Vol. 6: Return of the King (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/243","name":"Ultimate X-Men Vol. VI: Return of the King (2003)"}],"returned":3},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/31883","name":"Free Preview of THE INCREDIBLE HULK #50","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1016823/abomination_ultimate?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1009148,"name":"Absorbing Man","description":"","modified":"2013-10-24T14:32:08-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/b0/5269678709fb7","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009148","comics":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36481","name":"Avengers Academy (2010) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36480","name":"Avengers Academy (2010) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36479","name":"Avengers Academy (2010) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36484","name":"Avengers Academy (2010) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36489","name":"Avengers Academy (2010) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6935","name":"Avengers Annual (1967) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12783","name":"Captain America (1998) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20427","name":"Dazzler (1981) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20428","name":"Dazzler (1981) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41433","name":"Fear Itself (2010) #2 (3rd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38452","name":"Fear Itself: Fellowship of Fear (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39848","name":"Fear Itself: The Worthy (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40977","name":"Fear Itself: The Worthy (2011) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9072","name":"Incredible Hulk (1962) #261"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29794","name":"Iron Man 2.0 (2011) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29795","name":"Iron Man 2.0 (2011) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9698","name":"Journey Into Mystery (1952) #122"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5234","name":"Marvel Adventures Fantastic Four (2005) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6277","name":"Marvel Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39537","name":"Marvel Masterworks: The Mighty Thor Vol. 3 (Trade Paperback)"}],"returned":20},"series":{"available":28,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9086","name":"Avengers Academy (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1997","name":"Captain America (1998 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3745","name":"Dazzler (1981 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13691","name":"Fear Itself (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13857","name":"Fear Itself: Fellowship of Fear (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13827","name":"Fear Itself: The Worthy (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9924","name":"Iron Man 2.0 (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2032","name":"Journey Into Mystery (1952 - 1966)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/926","name":"Marvel Adventures Fantastic Four (2005 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1959","name":"Marvel Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14492","name":"Marvel Masterworks: The Mighty Thor Vol. 3 (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14491","name":"Marvel Masterworks: The Mighty Thor Vol. 3 Variant (DM Only) (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1588","name":"Marvel Masterworks: The Mighty Thor Vol. 4 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2301","name":"Marvel Super-Heroes (1992 - 1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1866","name":"Mighty Avengers (2007 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2059","name":"Paradise X (2002 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2431","name":"Paradise X Vol. 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6796","name":"Secret Warriors (2008 - 2011)"}],"returned":20},"stories":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4988","name":"1 of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11028","name":"Journey Into Mystery (1952) #122","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16688","name":"Thor (1966) #206","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16691","name":"Thor (1966) #207","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17049","name":"Thor (1966) #375","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17050","name":"Shadows of the Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17051","name":"Heroes Always Win...Don't They?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17342","name":"Cover #17342","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17412","name":"A Wing and a Prayer","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18670","name":"Encounter On Easter Island!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21604","name":"Secret Wars (1984) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21606","name":"Secret Wars (1984) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26016","name":"Paradise X Issue 0","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26025","name":"Cover #26025","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28708","name":"The Hunted Part 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/31596","name":"","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/31597","name":"Downtown Demolition","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37745","name":"A Wing and a Prayer","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39926","name":"And the Absorbing Man Makes Three!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39927","name":"Hammer Time!","type":"interiorStory"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered Heroes"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009148/absorbing_man?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Absorbing_Man?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1009149,"name":"Abyss","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/e0/4c004214c1502","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009149","comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009149/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13943","name":"Uncanny X-Men (1963) #402"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13945","name":"Uncanny X-Men (1963) #404"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13946","name":"Uncanny X-Men (1963) #405"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13947","name":"Uncanny X-Men (1963) #406"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13970","name":"Uncanny X-Men (1963) #429"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13972","name":"Uncanny X-Men (1963) #431"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: Alpha (1994) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":8},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009149/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: Alpha (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":3},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009149/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A Beginning","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28352","name":"Utility of Myth","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28356","name":"Army Ants","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28358","name":"Ballroom Blitzkrieg","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28360","name":"Staring Contests are for Suckers","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28407","name":"The Draco Part One: Sins of the Father","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28411","name":"The Draco Part Three","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28413","name":"The Draco Part Four","type":"interiorStory"}],"returned":8},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009149/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age of Apocalypse"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009149/abyss?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Abyss_(alien)?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011266,"name":"Adam Destine","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011266","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011266/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011266/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011266/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011266/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011266/adam_destine?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Destine,_Adam?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1010354,"name":"Adam Warlock","description":"Adam Warlock is an artificially created human who was born in a cocoon at a scientific complex called The Beehive.","modified":"2013-08-07T13:49:06-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/f0/5202887448860","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","comics":{"available":104,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17271","name":"Annihilation: Conquest (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17405","name":"Annihilation: Conquest (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17645","name":"Annihilation: Conquest (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20686","name":"Annihilation: Conquest (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20885","name":"Annihilation: Conquest (2007) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21016","name":"Annihilation: Conquest (2007) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12412","name":"Avengers Forever (1998) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1033","name":"Avengers Legends Vol. I: Avengers Forever (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20731","name":"Clandestine Classic Premiere (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20187","name":"Doctor Strange, Sorcerer Supreme (1988) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20193","name":"Doctor Strange, Sorcerer Supreme (1988) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20197","name":"Doctor Strange, Sorcerer Supreme (1988) #36"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8560","name":"Earth X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8552","name":"Earth X (1999) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8550","name":"Earth X (1999) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4241","name":"Earth X (New (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12975","name":"Fantastic Four (1961) #172"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13195","name":"Fantastic Four (1961) #370"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8988","name":"Incredible Hulk (1962) #177"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8989","name":"Incredible Hulk (1962) #178"}],"returned":20},"series":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3061","name":"Annihilation: Conquest (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2111","name":"Avengers Forever (1998 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/93","name":"Avengers Legends Vol. I: Avengers Forever (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3874","name":"Clandestine Classic Premiere (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3741","name":"Doctor Strange, Sorcerer Supreme (1988 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"Earth X (New (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2983","name":"Incredible Hulk Annual (1976 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6449","name":"Infinity Crusade Vol. 1 (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel Comics Presents (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1697","name":"Marvel Comics Presents: Wolverine Vol. 4 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1837","name":"Marvel Masterworks: Warlock Vol. (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel Premiere (1972 - 1981)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2301","name":"Marvel Super-Heroes (1992 - 1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3715","name":"Marvel Two-in-One (1974 - 1983)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1504","name":"Marvel Visionaries: Steve Ditko (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2055","name":"New Mutants (1983 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/563","name":"New Mutants (2003 - 2004)"}],"returned":20},"stories":{"available":124,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12569","name":"Cry, the Bedeviled Planet!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13121","name":"Forever Evil","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18500","name":"Peril of the Paired Planets","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18501","name":"Peril of the Paired Planets","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18503","name":"Triumph On Terra-Two","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19847","name":"Cover #19847","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19848","name":"Performance","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19859","name":"Days of Future Present Part 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19860","name":"You Must Remember This","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19883","name":"The Adventures of Lockheed the Space Dragon and His Pet Girl, Kitty","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19884","name":"The Saga of Storm: Goddess of Thunder","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19885","name":"There's No Place Like Home","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19887","name":"Cover #19887","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19888","name":"And Men Shall Call Him Warlock","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19911","name":"Cover #19911","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19912","name":"The Hounds of Helios","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20169","name":"Cover #20169","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20170","name":"The Day of the Prophet","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20171","name":"Cover #20171","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20172","name":"How Strange My Destiny! The Price! Part I Chapter I","type":"interiorStory"}],"returned":20},"events":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/293","name":"Annihilation: Conquest"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/235","name":"Blood and Thunder"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/253","name":"Infinity Gauntlet"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/271","name":"Secret Wars II"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction Agenda"}],"returned":10},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1010354/adam_warlock?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Warlock,_Adam?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1010846,"name":"Aegis (Trey Rollins)","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/e0/4c0035c9c425d","extension":"gif"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010846","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010846/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010846/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010846/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010846/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1010846/aegis_trey_rollins?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Aegis_%28Trey_Rollins%29?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011297,"name":"Agent Brand","description":"","modified":"2013-10-24T13:09:30-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/60/52695285d6e7e","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011297","comics":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5477","name":"Astonishing X-Men (2004) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38318","name":"Astonishing X-Men (2004) #38"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38319","name":"Astonishing X-Men (2004) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40024","name":"Astonishing X-Men (2004) #40 (I Am Captain America Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39890","name":"Heralds (Trade Paperback)"}],"returned":5},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing X-Men (2004 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13065","name":"Heralds (2010 - Present)"}],"returned":2},"stories":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3353","name":"Interior #3353","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/89900","name":"Astonishing X-Men (2004) #38","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90548","name":"Heralds TPB","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90819","name":"Interior #90819","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90853","name":" Interior Astonishing X-Men (2004) #40","type":"interiorStory"}],"returned":5},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011297/agent_brand?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Agent_Brand?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011031,"name":"Agent X (Nijo)","description":"Originally a partner of the mind-altering assassin Black Swan, Nijo spied on Deadpool as part of the Swan's plan to exact revenge for Deadpool falsely taking credit for the Swan's assassination of the Four Winds crime family, which included Nijo's brother.","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011031","comics":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17702","name":"Agent X (2002) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17709","name":"Agent X (2002) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17710","name":"Agent X (2002) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17711","name":"Agent X (2002) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17712","name":"Agent X (2002) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17713","name":"Agent X (2002) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17704","name":"Agent X (2002) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1649","name":"Cable & Deadpool (2004) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21845","name":"Cable & Deadpool (2004) #46 (Zombie Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5761","name":"Cable & Deadpool Vol. 2: The Burnt Offering (Trade Paperback)"}],"returned":10},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/459","name":"Agent X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/693","name":"Cable & Deadpool (2004 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1338","name":"Cable & Deadpool Vol. 2: The Burnt Offering (2007)"}],"returned":3},"stories":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2484","name":"2 of 2 - Thirty Pieces","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37514","name":"Cover #37514","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37515","name":"Dead Man's Switch Part One","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37518","name":"Cover #37518","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37525","name":"Cover #37525","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37526","name":"Dead Man's Switch Part Two","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37527","name":"Cover #37527","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37528","name":"Dead Man's Switch Part Three","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37529","name":"Cover #37529","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37530","name":"Dead Man's Switch Part Four","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37531","name":"Cover #37531","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37532","name":"Dead Man's Switch Part Five","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37533","name":"Cover #37533","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37534","name":"Dead Man's Switch Part Six","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/94769","name":"Cable & Deadpool (2004) #46, Zombie Variant","type":"cover"}],"returned":15},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011031/agent_x_nijo?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Agent_X_(Nijo)?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1009150,"name":"Agent Zero","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/60/4c0042121d790","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009150","comics":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3357","name":"Weapon X: Days of Future Now (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2438","name":"Weapon X: Days of Future Now (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18293","name":"What If? (1989)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14182","name":"Wolverine (1988) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14183","name":"Wolverine (1988) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14184","name":"Wolverine (1988) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14185","name":"Wolverine (1988) #63"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14186","name":"Wolverine (1988) #64"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14189","name":"Wolverine (1988) #67"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14190","name":"Wolverine (1988) #68"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14211","name":"Wolverine (1988) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14107","name":"Wolverine (1988) #163"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14110","name":"Wolverine (1988) #166"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14121","name":"Wolverine (1988) #176"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1023","name":"Wolverine/Deadpool: Weapon X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18176","name":"X-Man (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14282","name":"X-Men (1991) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14293","name":"X-Men (1991) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18132","name":"X-Men Unlimited (1993) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18116","name":"X-Men Unlimited (1993) #15"}],"returned":20},"series":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1478","name":"Weapon X: Days of Future Now (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/869","name":"Weapon X: Days of Future Now (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/84","name":"Wolverine/Deadpool: Weapon X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3637","name":"X-Men Unlimited (1993 - 1999)"}],"returned":8},"stories":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4606","name":"3 of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28706","name":"The Hunted Part 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28712","name":"The Hunted Part 5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28738","name":"The Logan Files Epilogue","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28881","name":"Counting Coup","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28883","name":"Nightmare Quest!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28885","name":"Reunion!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28887","name":"Bastions of Glory!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28889","name":"What Goes Around...","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28895","name":"Valley O' Death","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28897","name":"Epsilon Red","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28941","name":"Showdown In Lowtown","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29125","name":"Last Stand","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29139","name":"Over...Again","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38511","name":"Second Contact","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38554","name":"Among Us--A Sabretooth","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38555","name":"The Whispers Scream","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38556","name":"Sabretooth Vs. Maverick: Severed Ties","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38650","name":"Maverick","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38903","name":"Maverick","type":""}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009150/agent_zero?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Agent_Zero?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011198,"name":"Agents of Atlas","description":"","modified":"2010-11-17T14:36:25-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4ce18a834b7f5","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011198","comics":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6318","name":"Agents of Atlas (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23659","name":"Agents of Atlas (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4801","name":"Agents of Atlas (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23660","name":"Agents of Atlas (2009) #1 (50/50 COVER)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23825","name":"Agents of Atlas (2009) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5089","name":"Agents of Atlas (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23824","name":"Agents of Atlas (2009) #2 (MCGUINNESS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27402","name":"Agents of Atlas (2009) #2 (BACHALO 2ND PRINTING VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24015","name":"Agents of Atlas (2009) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5241","name":"Agents of Atlas (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24016","name":"Agents of Atlas (2009) #3 (MCGUINNESS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24017","name":"Agents of Atlas (2009) #3 (Wolverine Art Appreciation Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24219","name":"Agents of Atlas (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5404","name":"Agents of Atlas (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24221","name":"Agents of Atlas (2009) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5665","name":"Agents of Atlas (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24222","name":"Agents of Atlas (2009) #5 (MCGUINNESS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5842","name":"Agents of Atlas (2006) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24360","name":"Agents of Atlas (2009) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24361","name":"Agents of Atlas (2009) #7"}],"returned":20},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1097","name":"Agents of Atlas (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6807","name":"Agents of Atlas (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1980","name":"Agents of Atlas (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9181","name":"Avengers Vs. Atlas (2010)"}],"returned":4},"stories":{"available":32,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6009","name":"1 of 6 - 6 XLS-","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6011","name":"2 of 6 - 6 XLS -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6013","name":"3 of 6 - 6 XLS -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6015","name":"4 of 6 - 6 XLS -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6017","name":"5 of 6 - 6 XLS -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6019","name":"5 of 6 - Story A - 6XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52393","name":"1 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52395","name":"1 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52861","name":"2 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52863","name":"2 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53263","name":"3 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53265","name":"3 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53266","name":"3 of 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53669","name":"1 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53673","name":"2 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53675","name":"2 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53893","name":"Interior #53893","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53895","name":"Interior #53895","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53897","name":"Interior #53897","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53899","name":"Interior #53899","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark Reign"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011198/agents_of_atlas?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Agents_of_Atlas?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011175,"name":"Aginar","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011175","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011175/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011175/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011175/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011175/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011175/aginar?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Aginar?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011136,"name":"Air-Walker (Gabriel Lan)","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011136","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5589","name":"Heroes Reborn: Iron Man (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16330","name":"Iron Man (1996) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16331","name":"Iron Man (1996) #12"}],"returned":3},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1814","name":"Heroes Reborn: Iron Man (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13577","name":"Iron Man (1996 - 1998)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34082","name":"Magical Mystery Tour","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34085","name":"Matters of the Heart","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011136/air-walker_gabriel_lan?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Air-Walker_(Gabriel_Lan)?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011176,"name":"Ajak","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/80/4c002f35c5215","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011176","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011176/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011176/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011176/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011176/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011176/ajak?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Ajak?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1010870,"name":"Ajaxis","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/70/4c0035adc7d3a","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010870","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010870/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010870/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010870/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010870/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1010870/ajaxis?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Ajaxis?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":1011194,"name":"Akemi","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011194","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011194/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011194/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011194/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011194/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1011194/akemi?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]}]}}
@@ -0,0 +1,8 @@
1
+ HTTP/1.1 200 OK
2
+ Connection: close
3
+ ETag: 10ec0bdedebb14af91e274284ae5e4968019620b
4
+ Content-Type: application/json
5
+ Content-Length: 52182
6
+ Date: Tue, 04 Feb 2014 03:57:30 GMT
7
+
8
+ {"code":200,"status":"Ok","etag":"10ec0bdedebb14af91e274284ae5e4968019620b","data":{"offset":0,"limit":20,"total":31816,"count":20,"results":[{"id":41530,"digitalId":0,"title":"Ant-Man: So (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"It's the origin of the original Avenger, Ant-Man! Hank Pym has been known by a variety of names — including Ant-Man, Giant-Man, Goliath and Yellowjacket — he’s been an innovative scientist, a famed super hero, an abusive spouse and more. What demons drive a man like Hank Pym? And how did he begin his heroic career? ","modified":"2012-09-25T18:05:58-0400","isbn":"978-0-7851-6390-9","upc":"","diamondCode":"","ean":"9780785 163909 51999","issn":"","format":"Trade Paperback","pageCount":136,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"It's the origin of the original Avenger, Ant-Man! Hank Pym has been known by a variety of names — including Ant-Man, Giant-Man, Goliath and Yellowjacket — he’s been an innovative scientist, a famed super hero, an abusive spouse and more. What demons drive a man like Hank Pym? And how did he begin his heroic career? "}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/41530","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/41530/ant-man_so_trade_paperback?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"purchase","url":"http://comicstore.marvel.com/Ant-Man-So-0/digital-comic/27157?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/15481","name":"Ant-Man: So (2011 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2020-12-31T00:00:00-0500"},{"type":"focDate","date":"2020-12-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":19.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/30/4fe8cb51f32e0","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/30/4fe8cb51f32e0","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/41530/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff Youngquist","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/41530/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":{"service":"comic_issueStories","id":41530},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/93946","name":"Cover #93946","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/93947","name":"Interior #93947","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/41530/events","items":[],"returned":0}},{"id":47533,"digitalId":0,"title":"Kick-Ass 3 (2013) #8","issueNumber":8,"variantDescription":"","description":"Variant by STEVE MCNIVEN\nThe epic series finale is here! Kick-Ass 3 dons the costume one last time…will he be going to his death or a triumphant ride into the sunset? And has months in lock-up dulled Hit-Girl’s death-dealing reflexes just when she needs them the most? This milestone double-sized issue marks the end of one era and the start of a new Millarworld universe. Must not miss!\n","modified":"2014-01-13T11:40:26-0500","isbn":"","upc":75960607937700820,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":48,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Variant by STEVE MCNIVEN\nThe epic series finale is here! Kick-Ass 3 dons the costume one last time…will he be going to his death or a triumphant ride into the sunset? And has months in lock-up dulled Hit-Girl’s death-dealing reflexes just when she needs them the most? This milestone double-sized issue marks the end of one era and the start of a new Millarworld universe. Must not miss!\n"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/47533","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/47533/kick-ass_3_2013_8?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/17946","name":"Kick-Ass 3 (2013 - Present)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47676","name":"Kick-Ass 3 (2013) #8 (Jrjr Sketch Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-04-30T00:00:00-0400"},{"type":"focDate","date":"2014-04-16T00:00:00-0400"}],"prices":[{"type":"printPrice","price":5.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47533/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12245","name":"Neurotic Cartoonist, Inc","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4596","name":"Jennifer Lee","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/88","name":"Mark Millar","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11467","name":"Dean V. White","role":"colorist"}],"returned":4},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47533/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":{"service":"comic_issueStories","id":47533},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107350","name":"cover from Kick-Ass 3 (2013) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107351","name":"story from Kick-Ass 3 (2013) #8","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47533/events","items":[],"returned":0}},{"id":50774,"digitalId":0,"title":"Miracleman (2014) #4","issueNumber":4,"variantDescription":"","description":null,"modified":"2014-01-15T09:54:07-0500","isbn":"","upc":75960608035900420,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":48,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/50774","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/50774/miracleman_2014_4?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18688","name":"Miracleman (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-26T00:00:00-0400"},{"type":"focDate","date":"2014-03-12T00:00:00-0400"}],"prices":[{"type":"printPrice","price":4.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50774/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50774/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":{"service":"comic_issueStories","id":50774},"items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50774/events","items":[],"returned":0}},{"id":47614,"digitalId":0,"title":"THE SUPERIOR FOES OF SPIDER-MAN (2013) #11","issueNumber":11,"variantDescription":"","description":"\n\n\n\n=there&#39;sstillonlyfivemembers.\nSpencer&amp;LiebercontinuethesleeperhitoftheNOW-lenium!\n\n<ul><li>They don&#39;t get NOW-er than the Superior Foes of Spider-Man!</li><li>Is there a rat in the Sinister Six?</li><li></li><li>=there&#39;s still only five members.</li><li>Spencer &amp; Lieber continue the sleeper hit of the NOW-lenium!</li></ul>","modified":"2014-01-29T13:23:29-0500","isbn":"","upc":75960607941401100,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n=there&#39;sstillonlyfivemembers.\nSpencer&amp;LiebercontinuethesleeperhitoftheNOW-lenium!\n\n<ul><li>They don&#39;t get NOW-er than the Superior Foes of Spider-Man!</li><li>Is there a rat in the Sinister Six?</li><li></li><li>=there&#39;s still only five members.</li><li>Spencer &amp; Lieber continue the sleeper hit of the NOW-lenium!</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/47614","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/47614/the_superior_foes_of_spider-man_2013_11?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/17959","name":"THE SUPERIOR FOES OF SPIDER-MAN (2013 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-19T00:00:00-0400"},{"type":"focDate","date":"2014-03-05T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/30/52ab4cb4adcb1","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/30/52ab4cb4adcb1","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47614/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11647","name":"Tom Brennan","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Chris Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9482","name":"Steve Lieber","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12288","name":"Michael Del Mundo","role":"artist (cover)"}],"returned":4},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47614/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":47614},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107509","name":"cover from The Deadly Foes of Spider-Man (2013) #11","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47614/events","items":[],"returned":0}},{"id":48851,"digitalId":0,"title":"Thor: God of Thunder (2012) #20","issueNumber":20,"variantDescription":"","description":"\n\n\n\n\n<ul><li>Thor battles to save the Earth on two fronts.</li><li>In the present day, Thor takes on Roxxon, the world&#39;s most powerful and nefarious super-corporation. While in the far future, King Thor is all that stands between Old Galactus and the planet he&#39;s been dying to eat for a very long time.</li><li>Even if King Thor wins, is the Earth still doomed?</li></ul>","modified":"2014-01-29T13:26:38-0500","isbn":"","upc":75960607913102020,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n<ul><li>Thor battles to save the Earth on two fronts.</li><li>In the present day, Thor takes on Roxxon, the world&#39;s most powerful and nefarious super-corporation. While in the far future, King Thor is all that stands between Old Galactus and the planet he&#39;s been dying to eat for a very long time.</li><li>Even if King Thor wins, is the Earth still doomed?</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48851","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48851/thor_god_of_thunder_2012_20?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16729","name":"Thor: God of Thunder (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-19T00:00:00-0400"},{"type":"focDate","date":"2014-03-05T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48851/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48851/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":{"service":"comic_issueStories","id":48851},"items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48851/events","items":[],"returned":0}},{"id":46871,"digitalId":0,"title":"Hawkeye (2012) #17","issueNumber":17,"variantDescription":"","description":"&quot;Rio Bravo&quot; - PART 4\r\n\r\n\r\n\r\n\r\n<ul><li>The sense-shattering fallout of the Clint vs. the Clown -- Clint Barton has been deafened!</li><li>With the Barton Brothers this battered and bloodied, surely they&#39;ll make easy pickins for the Bros, right? Bro? Seriously?</li><li>If we do our jobs right THIS time, this issue will be the Dog Issue of Sign Language issues.</li></ul>","modified":"2014-01-16T06:02:46-0500","isbn":"","upc":75960607815801710,"diamondCode":"DEC130741","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"&quot;Rio Bravo&quot; - PART 4\r\n\r\n\r\n\r\n\r\n<ul><li>The sense-shattering fallout of the Clint vs. the Clown -- Clint Barton has been deafened!</li><li>With the Barton Brothers this battered and bloodied, surely they&#39;ll make easy pickins for the Bros, right? Bro? Seriously?</li><li>If we do our jobs right THIS time, this issue will be the Dog Issue of Sign Language issues.</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/46871","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/46871/hawkeye_2012_17?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16309","name":"Hawkeye (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/b0/52865a1e56e3f","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/b0/52865a1e56e3f","extension":"jpg"}],"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/46871/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/750","name":"David Aja","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Chris Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1132","name":"Matt Fraction","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/507","name":"Matt Hollingsworth","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11879","name":"Stephen Wacker","role":"editor"}],"returned":5},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/46871/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":{"service":"comic_issueStories","id":46871},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105364","name":"cover from Hawkeye (2012) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105365","name":"story from Hawkeye (2012) #17","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/46871/events","items":[],"returned":0}},{"id":48037,"digitalId":0,"title":"Superior Spider-Man (2013) #29","issueNumber":29,"variantDescription":"","description":"&quot;Goblin Nation&quot; - Part 3 of 5\n\n\n\n\n<ul><li>The Spider-Slayer Squadron were supposed to be under Mayor J. Jonah Jameson&#39;s control...</li><li>...but now they&#39;ve been drafted into The Goblin Nation!</li><li>Guest Starring: Spider-Man 2099!</li></ul>","modified":"2014-01-29T13:22:30-0500","isbn":"","upc":75960607912402910,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"&quot;Goblin Nation&quot; - Part 3 of 5\n\n\n\n\n<ul><li>The Spider-Slayer Squadron were supposed to be under Mayor J. Jonah Jameson&#39;s control...</li><li>...but now they&#39;ve been drafted into The Goblin Nation!</li><li>Guest Starring: Spider-Man 2099!</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48037","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48037/superior_spider-man_2013_29?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/17554","name":"Superior Spider-Man (2013 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/60/52ab4bae30b7c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/60/52ab4bae30b7c","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48037/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11879","name":"Stephen Wacker","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48037/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":48037},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108315","name":"cover from Superior Spider-Man (2013) #29","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48037/events","items":[],"returned":0}},{"id":49239,"digitalId":0,"title":"Wolverine (2014) #3","issueNumber":3,"variantDescription":"","description":"\n\n\n\n\n\n\n\n<ul><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li></ul>","modified":"2014-01-30T10:46:23-0500","isbn":"","upc":759606080091000300,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n\n\n\n<ul><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li><li>Logan&#39;s training continues&hellip;and he&#39;s got his sights set on Sabretooth.</li><li>What could make Logan turn his back on the school and his friends?</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49239","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49239/wolverine_2014_3?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18517","name":"Wolverine (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/52ab4e0689f33","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/52ab4e0689f33","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49239/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8715","name":"Jeanine Schaefer","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49239/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":49239},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110563","name":"cover from Wolverine (2014) #3","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49239/events","items":[],"returned":0}},{"id":49018,"digitalId":0,"title":"Captain Marvel (2014) #1","issueNumber":1,"variantDescription":"","description":"Hero! Pilot! Avenger! Captain Marvel, Earth&#39;s Mightiest Hero with death-defying powers and an attitude to match, is back and launching headfirst into an all-new ongoing series! As Captain Marvel, a.k.a. Carol Danvers, comes to a crossroads with a new life and new romance, she makes a dramatic decision that will alter the course of her life and the entire Marvel Universe in the months to come. It&#39;s time to go HIGHER, FURTHER, FASTER and more in the most super-powered comic around!","modified":"2014-01-29T12:03:26-0500","isbn":"","upc":75960607990200110,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Hero! Pilot! Avenger! Captain Marvel, Earth&#39;s Mightiest Hero with death-defying powers and an attitude to match, is back and launching headfirst into an all-new ongoing series! As Captain Marvel, a.k.a. Carol Danvers, comes to a crossroads with a new life and new romance, she makes a dramatic decision that will alter the course of her life and the entire Marvel Universe in the months to come. It&#39;s time to go HIGHER, FURTHER, FASTER and more in the most super-powered comic around!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49018","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49018/captain_marvel_2014_1?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18455","name":"Captain Marvel (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/52ab416707aac","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/52ab416707aac","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49018/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11879","name":"Stephen Wacker","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49018/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":49018},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110123","name":"cover from Captain Marvel (2014) #1","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49018/events","items":[],"returned":0}},{"id":49921,"digitalId":0,"title":"X-Force (2014) #2","issueNumber":2,"variantDescription":"","description":"\n\n\n\n\n<ul><li>Cable. Psylocke. Fantomex. Marrow. They are mutantkind&#39;s protectors, spies, assassins and torturers!</li><li>But just what has driven each of them to join the most deadly incarnation of X-FORCE yet? Yes, Marrow is back!</li><li>But how has she regained her mutant powers and what does it have to do with X-Force&#39;s first target?</li></ul>","modified":"2014-01-30T10:47:28-0500","isbn":"","upc":759606080411000200,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n<ul><li>Cable. Psylocke. Fantomex. Marrow. They are mutantkind&#39;s protectors, spies, assassins and torturers!</li><li>But just what has driven each of them to join the most deadly incarnation of X-FORCE yet? Yes, Marrow is back!</li><li>But how has she regained her mutant powers and what does it have to do with X-Force&#39;s first target?</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49921","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49921/x-force_2014_2?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18762","name":"X-Force (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/d0/52ab4e8af12be","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/d0/52ab4e8af12be","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49921/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11737","name":"Daniel Ketchum","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49921/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":49921},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/111902","name":"cover from X-Force (2014) #2","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49921/events","items":[],"returned":0}},{"id":48527,"digitalId":0,"title":"All-New X-Men (2012) #24","issueNumber":24,"variantDescription":"","description":"\n\n\n\n\n\n<ul><li>X-Men and Guardians vs. Gladiator and Jean Grey&#39;s fate lies in the balance!</li><li>One of the X-Men&#39;s lives will be forever changed!</li><li>X-Men and Guardians vs. Gladiator and Jean Grey&#39;s fate lies in the balance!</li><li>One of the X-Men&#39;s lives will be forever changed!</li></ul>","modified":"2014-01-29T11:59:28-0500","isbn":"","upc":75960607900102420,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n\n<ul><li>X-Men and Guardians vs. Gladiator and Jean Grey&#39;s fate lies in the balance!</li><li>One of the X-Men&#39;s lives will be forever changed!</li><li>X-Men and Guardians vs. Gladiator and Jean Grey&#39;s fate lies in the balance!</li><li>One of the X-Men&#39;s lives will be forever changed!</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48527","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48527/all-new_x-men_2012_24?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New X-Men (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/e0/52ab3ecde3318","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/e0/52ab3ecde3318","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48527/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick Lowe","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48527/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":48527},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109149","name":"cover from All-New X-Men (2012) #24","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48527/events","items":[],"returned":0}},{"id":48613,"digitalId":0,"title":"Deadpool (2012) #25","issueNumber":25,"variantDescription":"","description":"First Marvel NOW! title to reach the landmark 25th issue! Avengers doesn&#39;t count. Because. When Deadpool re-killed the reanimated dead Presidents of the United States, Agent Gorman of S.H.I.E.L.D. stiffed him on his well-earned pay. Now, his vengeance is finally wrought! But now that former S.H.I.E.L.D Agent Preston&#39;s consciousness is stuck inside his head, will she be ok with this wreaking? And is all this SHIELD stuff a shameless cash in because of the TV show? Ask guest-star AGENT COULSON!","modified":"2014-01-29T12:28:12-0500","isbn":"","upc":75960607905602510,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"First Marvel NOW! title to reach the landmark 25th issue! Avengers doesn&#39;t count. Because. When Deadpool re-killed the reanimated dead Presidents of the United States, Agent Gorman of S.H.I.E.L.D. stiffed him on his well-earned pay. Now, his vengeance is finally wrought! But now that former S.H.I.E.L.D Agent Preston&#39;s consciousness is stuck inside his head, will she be ok with this wreaking? And is all this SHIELD stuff a shameless cash in because of the TV show? Ask guest-star AGENT COULSON!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48613","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48613/deadpool_2012_25?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16542","name":"Deadpool (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/c0/52ab41ea5ed71","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/c0/52ab41ea5ed71","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/90/52a9ea867170d","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48613/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8822","name":"Jordan White","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48613/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":48613},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109321","name":"cover from Deadpool (2012) #25","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48613/events","items":[],"returned":0}},{"id":47965,"digitalId":0,"title":"All-New X-Factor (2014) #4","issueNumber":4,"variantDescription":"","description":"\n\n\n\n\n<ul><li>In issue #4, the team takes on their former frenemy, Danger!</li><li>Then, in issue #5, learn the sinister secret of Techno Inc.!</li><li>Brought to you by Serval Industries.</li></ul>","modified":"2014-01-29T11:58:20-0500","isbn":"","upc":75960607955100420,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n<ul><li>In issue #4, the team takes on their former frenemy, Danger!</li><li>Then, in issue #5, learn the sinister secret of Techno Inc.!</li><li>Brought to you by Serval Industries.</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/47965","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/47965/all-new_x-factor_2014_4?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18136","name":"All-New X-Factor (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/80/52ab3e8d3378d","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/80/52ab3e8d3378d","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47965/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8822","name":"Jordan White","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47965/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":47965},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108171","name":"cover from All-New X-Factor (2013) #4","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47965/events","items":[],"returned":0}},{"id":48323,"digitalId":0,"title":"Mighty Avengers (2013) #8","issueNumber":8,"variantDescription":"","description":"\n\n\n\n\n<ul><li>Spectrum and She-Hulk join Blue Marvel on one of his global adventures - against a threat that could break Adam&#39;s heart!</li><li>It&#39;s White Tiger versus Tiger God - with Ava Ayala&#39;s soul in the balance!</li><li>We need to talk about Kevin.</li></ul>","modified":"2014-01-29T12:46:19-0500","isbn":"","upc":75960607959900820,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n<ul><li>Spectrum and She-Hulk join Blue Marvel on one of his global adventures - against a threat that could break Adam&#39;s heart!</li><li>It&#39;s White Tiger versus Tiger God - with Ava Ayala&#39;s soul in the balance!</li><li>We need to talk about Kevin.</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48323","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48323/mighty_avengers_2013_8?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18309","name":"Mighty Avengers (2013 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/10/52ab4676d0f41","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/10/52ab4676d0f41","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48323/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48323/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":48323},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108825","name":"cover from Mighty Avengers (2013) #8","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48323/events","items":[],"returned":0}},{"id":47989,"digitalId":0,"title":"Black Widow (2014) #4","issueNumber":4,"variantDescription":"","description":"\n\n\n\n\n<ul><li>From the cold streets of old Russia, the Hand of God reaches out to crush Black Widow&mdash;and it is merciless.</li><li>Outmatched by the brute force of a powerful new villain, Natasha finds a deadly plot unfolding that spans the entire globe</li><li>Jump on to the sensational new series as the most lethal The Avenger faces her deadliest test!</li></ul>","modified":"2014-01-29T12:02:43-0500","isbn":"","upc":75960607956800420,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n<ul><li>From the cold streets of old Russia, the Hand of God reaches out to crush Black Widow&mdash;and it is merciless.</li><li>Outmatched by the brute force of a powerful new villain, Natasha finds a deadly plot unfolding that spans the entire globe</li><li>Jump on to the sensational new series as the most lethal The Avenger faces her deadliest test!</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/47989","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/47989/black_widow_2014_4?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18138","name":"Black Widow (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/80/52ab40996e5f1","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/80/52ab40996e5f1","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47989/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5160","name":"Phil Noto","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11742","name":"Elizabeth Pyle","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47989/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":47989},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108219","name":"cover from Black Widow (2013) #4","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/47989/events","items":[],"returned":0}},{"id":48545,"digitalId":0,"title":"Avengers Arena 2 (2014) #1","issueNumber":1,"variantDescription":"","description":"WHEN TEEN HEROES INFILTRATE THE MASTERS OF EVIL, WHO WILL BREAK BAD?\nDamaged by their experience in Murder World, five conflicted young superhumans go rogue and infiltrate the Masters of Evil, planning to bring the Avengers&#39; rivals down from within. But the longer the teens spend undercover, the more they descend into darkness, and as they start to build relationships with these multi-layered criminals, the line between good and evil blurs. What will happen first&hellip;joining the Masters for real, or getting exposed and killed? If you thought Murder World was dangerous, just wait until &quot;Most Promising New Talent&quot; Harvey award-winner Dennis Hopeless and acclaimed artist Kev Walker surround you with Evil!","modified":"2014-01-29T12:00:40-0500","isbn":"","upc":759606079781000100,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"WHEN TEEN HEROES INFILTRATE THE MASTERS OF EVIL, WHO WILL BREAK BAD?\nDamaged by their experience in Murder World, five conflicted young superhumans go rogue and infiltrate the Masters of Evil, planning to bring the Avengers&#39; rivals down from within. But the longer the teens spend undercover, the more they descend into darkness, and as they start to build relationships with these multi-layered criminals, the line between good and evil blurs. What will happen first&hellip;joining the Masters for real, or getting exposed and killed? If you thought Murder World was dangerous, just wait until &quot;Most Promising New Talent&quot; Harvey award-winner Dennis Hopeless and acclaimed artist Kev Walker surround you with Evil!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48545","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48545/avengers_arena_2_2014_1?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18341","name":"Avengers Arena 2 (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/60/5256c718ca732","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48545/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48545/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":{"service":"comic_issueStories","id":48545},"items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48545/events","items":[],"returned":0}},{"id":48381,"digitalId":0,"title":"Avengers (2012) #27","issueNumber":27,"variantDescription":"","description":"\n\n\n\n\n\n<ul><li>The secret behind the All-New Avengers revealed!</li><li>The science war overtakes the world(s).</li><li>All the answers to the questions you wished remained hidden.</li><li>The collision of Avengers and New Avengers is imminent.</li></ul>","modified":"2014-01-29T12:00:03-0500","isbn":"","upc":75960607902502700,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\n\n\n\n\n\n<ul><li>The secret behind the All-New Avengers revealed!</li><li>The science war overtakes the world(s).</li><li>All the answers to the questions you wished remained hidden.</li><li>The collision of Avengers and New Avengers is imminent.</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/48381","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/48381/avengers_2012_27?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/52ab3f51e3f02","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/52ab3f51e3f02","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48381/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48381/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":48381},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108905","name":"cover from Avengers (2012) #27","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/48381/events","items":[],"returned":0}},{"id":50438,"digitalId":0,"title":"X-Men Legacy (2012) #300","issueNumber":300,"variantDescription":"","description":null,"modified":"2014-01-30T10:49:37-0500","isbn":"","upc":75960607919330020,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":40,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/50438","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/50438/x-men_legacy_2012_300?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/16791","name":"X-Men Legacy (2012 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":4.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/00/52ab4f10caa2c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/00/52ab4f10caa2c","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50438/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11737","name":"Daniel Ketchum","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50438/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":50438},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/112902","name":"cover from X-Men Legacy (2012) #300","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50438/events","items":[],"returned":0}},{"id":50285,"digitalId":0,"title":"Secret Avengers (2014) #1","issueNumber":1,"variantDescription":"","description":"The all-new Secret Avengers are ready to get started. Are they going to be the world&#39;s most effective secret squad? Or will their personal issues tear them apart? U-DECIDE! Three missions kick off at the same time: one in the space, one on the ground...and one in the air. And no one&#39;s ready. Except for the attackers. Russian spa. Helicarrier. Space station. Falling satellites. A hired hitman with nothing to lose. The Fury. WAIT. Yes. THE FURY. Why is Hawkeye still around? And why are these people chasing him? Why are Black Widow and Spider Woman in a Russian spa? Do questions in teasers excite you? RUN THE MISSION, DON&#39;T GET SEEN, SAVE THE WORLD. NOW!","modified":"2014-01-29T13:20:11-0500","isbn":"","upc":75960608052600110,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The all-new Secret Avengers are ready to get started. Are they going to be the world&#39;s most effective secret squad? Or will their personal issues tear them apart? U-DECIDE! Three missions kick off at the same time: one in the space, one on the ground...and one in the air. And no one&#39;s ready. Except for the attackers. Russian spa. Helicarrier. Space station. Falling satellites. A hired hitman with nothing to lose. The Fury. WAIT. Yes. THE FURY. Why is Hawkeye still around? And why are these people chasing him? Why are Black Widow and Spider Woman in a Russian spa? Do questions in teasers excite you? RUN THE MISSION, DON&#39;T GET SEEN, SAVE THE WORLD. NOW!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/50285","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/50285/secret_avengers_2014_1?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18818","name":"Secret Avengers (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/20/52ab4a1e01b6c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/0/03/52df164006724","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/20/52ab4a1e01b6c","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50285/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50285/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":50285},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/112603","name":"cover from Secret Avengers (2014) #1","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/50285/events","items":[],"returned":0}},{"id":49772,"digitalId":0,"title":"Fantastic Four (2014) #2","issueNumber":2,"variantDescription":"","description":"&quot;THE FALL OF THE FANTASTIC FOUR&quot; PART 2\n\n\n\n\n\n<ul><li>Manhattan is under attack by a monstrous killer swarm from a corrupted pocket universe, and in order to defeat it the FANTASTIC FOUR will need all their courage, powers and skill...as well as those of every other hero in New York!</li><li>But to attain final victory one of the First Family will must make a TERRIBLE SACRIFICE!</li><li>And so the first strings are pulled and the first pieces are put in place...</li><li>...On the Fantastic Four&#39;s DOWNFALL!</li></ul>","modified":"2014-01-29T12:44:53-0500","isbn":"","upc":75960608044100210,"diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"&quot;THE FALL OF THE FANTASTIC FOUR&quot; PART 2\n\n\n\n\n\n<ul><li>Manhattan is under attack by a monstrous killer swarm from a corrupted pocket universe, and in order to defeat it the FANTASTIC FOUR will need all their courage, powers and skill...as well as those of every other hero in New York!</li><li>But to attain final victory one of the First Family will must make a TERRIBLE SACRIFICE!</li><li>And so the first strings are pulled and the first pieces are put in place...</li><li>...On the Fantastic Four&#39;s DOWNFALL!</li></ul>"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49772","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49772/fantastic_four_2014_2?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18700","name":"Fantastic Four (2014 - Present)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-03-12T00:00:00-0400"},{"type":"focDate","date":"2014-02-26T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/f0/52ab42ea07d7f","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/f0/52ab42ea07d7f","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49772/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark Paniccia","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49772/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":{"service":"comic_issueStories","id":49772},"items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/111618","name":"cover from Fantastic Four (2014) #2","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49772/events","items":[],"returned":0}}]}}
@@ -0,0 +1,8 @@
1
+ HTTP/1.1 200 OK
2
+ Connection: close
3
+ ETag: 0cb4037c1b0c6df42cfb3075c444ee9dabc578fc
4
+ Content-Type: application/json
5
+ Content-Length: 27914
6
+ Date: Tue, 04 Feb 2014 03:56:37 GMT
7
+
8
+ {"code":200,"status":"Ok","etag":"0cb4037c1b0c6df42cfb3075c444ee9dabc578fc","data":{"offset":0,"limit":20,"total":5557,"count":20,"results":[{"id":7968,"firstName":"","middleName":"","lastName":"","suffix":"","fullName":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/7968","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7968/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7968/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7968/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7968/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7968?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":6606,"firstName":"A.R.K.","middleName":"","lastName":"","suffix":"","fullName":"A.R.K.","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/6606","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19815","name":"Marvel Fanfare (1982) #4"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3719","name":"Marvel Fanfare (1982 - 1992)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42310","name":"Mindgame","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6606/ark.?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":3096,"firstName":"Abel","middleName":"","lastName":"","suffix":"","fullName":"Abel","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3096","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3096/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9653","name":"Iron Man (1968) #94"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3096/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron Man (1968 - 1996)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3096/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19787","name":"Frenzy At Fifty Fathoms","type":""}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3096/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3096/abel?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":7969,"firstName":"ACTOR","middleName":"","lastName":"","suffix":"","fullName":"ACTOR","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/7969","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7969/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7969/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7969/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7969/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7969/actor?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":2289,"firstName":"Alexandrov","middleName":"","lastName":"","suffix":"","fullName":"Alexandrov","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/2289","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2289/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7235","name":"Avengers (1963) #354"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7244","name":"Avengers (1963) #362"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11780","name":"Thor (1966) #452"}],"returned":3},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2289/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2083","name":"Thor (1966 - 1996)"}],"returned":2},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2289/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15020","name":"The Conqueror Worm","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15039","name":"A Vision Revealed","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17250","name":"With This Axe, I Thee Kill!","type":"interiorStory"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2289/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/2289/alexandrov?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":4110,"firstName":"Alrio","middleName":"","lastName":"","suffix":"","fullName":"Alrio","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/4110","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4110/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7847","name":"Captain America (1996) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5453","name":"Heroes Reborn: Captain America (Trade Paperback)"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4110/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/6478","name":"Captain America (1996 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1815","name":"Heroes Reborn: Captain America (2006)"}],"returned":2},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4110/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24513","name":"Serpents and Eagles: Part 1: A First Small Hisssss","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4110/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/4110/alrio?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":7470,"firstName":"ALSJOERDSMA","middleName":"","lastName":"","suffix":"","fullName":"ALSJOERDSMA","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/7470","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7470/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7470/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7470/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7470/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7470/alsjoerdsma?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":6326,"firstName":"Amash","middleName":"","lastName":"","suffix":"","fullName":"Amash","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/6326","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6326/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18941","name":"Quasar (1989) #51"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23453","name":"Quasar (1999) #51"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6326/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/6682","name":"Quasar (1999 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3695","name":"Quasar (1989 - 1994)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6326/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40502","name":"The Conservation Of Angular Momentum","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51999","name":"The Conservation Of Angular Momentum","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6326/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6326/amash?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":3965,"firstName":"Andreani","middleName":"","lastName":"","suffix":"","fullName":"Andreani","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3965","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3965/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3965/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3965/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3965/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3965/andreani?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":8040,"firstName":"Angel","middleName":"","lastName":"","suffix":"","fullName":"Angel","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/8040","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8040/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24235","name":"Hulk: Broken Worlds Book (2009) #2"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8040/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/7427","name":"Hulk: Broken Worlds Book (2009)"}],"returned":1},"stories":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8040/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53700","name":"2 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57111","name":"Cover #57111","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57112","name":"Interior #57112","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57114","name":"Interior #57114","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57116","name":"Interior #57116","type":"interiorStory"}],"returned":5},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8040/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/8040/angel?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":5810,"firstName":"Ariane","middleName":"","lastName":"","suffix":"","fullName":"Ariane","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/5810","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5810/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17787","name":"Avengers West Coast (1985) #100"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19865","name":"Iron Man Annual (1976) #14"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5810/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3623","name":"Avengers West Coast (1985 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3723","name":"Iron Man Annual (1976 - 1994)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5810/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37790","name":"Boys Will Be Boys","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42583","name":"Unfamiliar Faces","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5810/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/5810/ariane?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":6723,"firstName":"Armada","middleName":"","lastName":"","suffix":"","fullName":"Armada","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/6723","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6723/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19918","name":"Iron Man (1998) #44"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19919","name":"Iron Man (1998) #45"}],"returned":2},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6723/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2572","name":"Iron Man (1998 - 2004)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6723/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42698","name":"Cover #42698","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42700","name":"Cover #42700","type":"cover"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6723/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6723/armada?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":4592,"firstName":"Arno","middleName":"","lastName":"","suffix":"","fullName":"Arno","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/4592","comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4592/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14224","name":"Wolverine (1988) #99"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14335","name":"X-Men (1991) #46"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14336","name":"X-Men (1991) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14337","name":"X-Men (1991) #48"}],"returned":4},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4592/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men (1991 - 2001)"}],"returned":2},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4592/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28967","name":"Cover #28967","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29224","name":"The Totally Unexpected Return of the X-Babies !","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29226","name":"Cover #29226","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29228","name":"Divided Minds","type":"cover"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4592/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/4592/arno?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":2935,"firstName":"Austin","middleName":"","lastName":"","suffix":"","fullName":"Austin","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/2935","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2935/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9113","name":"Incredible Hulk (1962) #302"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2935/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2935/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18752","name":"Cover #18752","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2935/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/2935/austin?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":3052,"firstName":"Avon","middleName":"","lastName":"","suffix":"","fullName":"Avon","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3052","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17787","name":"Avengers West Coast (1985) #100"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9547","name":"Iron Man (1968) #298"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3623","name":"Avengers West Coast (1985 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron Man (1968 - 1996)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19570","name":"Heart of Stone","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37790","name":"Boys Will Be Boys","type":""}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3052/avon?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":6535,"firstName":"B.K.","middleName":"","lastName":"","suffix":"","fullName":"B.K.","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/6535","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6535/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19764","name":"Marvel Preview (1977) #15"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6535/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3718","name":"Marvel Preview (1977 - 1981)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6535/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41947","name":"pin-up","type":""}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6535/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6535/bk.?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":2299,"firstName":"Babcock","middleName":"","lastName":"","suffix":"","fullName":"Babcock","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/2299","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2299/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7249","name":"Avengers (1963) #367"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8338","name":"Daredevil (1963) #338"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2299/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil (1963 - 1998)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2299/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15051","name":"Voyeuristic Visions","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16260","name":"Treachery","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2299/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/2299/babcock?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":7591,"firstName":"Bair","middleName":"","lastName":"","suffix":"","fullName":"Bair","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/7591","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7591/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22189","name":"Punisher War Journal (1988) #34"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7591/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/5860","name":"Punisher War Journal (1988 - 1995)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7591/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49670","name":"Interior #49670","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7591/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7591/bair?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":3188,"firstName":"Balcells","middleName":"","lastName":"","suffix":"","fullName":"Balcells","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3188","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11950","name":"Vampire Tales (1973) #6"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2089","name":"Vampire Tales (1973 - 1975)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20411","name":"Angie's Soul","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3188/balcells?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]},{"id":4781,"firstName":"Barta","middleName":"","lastName":"","suffix":"","fullName":"Barta","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/4781","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4781/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15137","name":"Silver Surfer (1987) #137"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15138","name":"Silver Surfer (1987) #138"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15139","name":"Silver Surfer (1987) #139"}],"returned":3},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4781/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2288","name":"Silver Surfer (1987 - 1998)"}],"returned":1},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4781/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30743","name":"the Resurrection","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30745","name":"Cover #30745","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30747","name":"Cover #30747","type":"cover"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4781/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/4781/barta?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}]}]}}
@@ -0,0 +1,8 @@
1
+ HTTP/1.1 200 OK
2
+ Connection: close
3
+ ETag: b7547b0c425fba55c65e23f043b80fdbf8bdeace
4
+ Content-Type: application/json
5
+ Content-Length: 208241
6
+ Date: Tue, 04 Feb 2014 03:57:06 GMT
7
+
8
+ {"code":200,"status":"Ok","etag":"b7547b0c425fba55c65e23f043b80fdbf8bdeace","data":{"offset":0,"limit":20,"total":60,"count":20,"results":[{"id":116,"title":"Acts of Vengeance!","description":"Loki sets about convincing the super-villains of Earth to attack heroes other than those they normally fight in an attempt to destroy the Avengers to absolve his guilt over inadvertently creating the team in the first place.","resourceURI":"http://gateway.marvel.com/v1/public/events/116","urls":[{"type":"detail","url":"http://marvel.com/comics/events/116/acts_of_vengeance?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Acts_of_Vengeance!?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-28T16:31:24-0400","start":"1989-12-10 00:00:00","end":"2008-01-04 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/40/51ca10d996b8b","extension":"jpg"},"creators":{"available":115,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2707","name":"Jeff Albrecht","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2077","name":"Hilary Barta","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1277","name":"Bret Blevins","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5823","name":"Danny Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2047","name":"Craig Anderson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5075","name":"Bobbie Chase","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark Bagley","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark Bright","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich Buckler","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/105","name":"Sal Buscema","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2713","name":"Gary Barnum","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1231","name":"Kurt Busiek","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1935","name":"Paul Becton","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2043","name":"Eliot Brown","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1871","name":"Ken Bruzenak","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice Chiang","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John Byrne","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3415","name":"John Calimee","role":"penciller (cover)"}],"returned":20},"characters":{"available":67,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010370","name":"Alpha Flight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009152","name":"Ancient One"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009179","name":"Beetle"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black Knight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009213","name":"Bushwacker"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009239","name":"Clea"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009262","name":"Daredevil"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor Strange"}],"returned":20},"stories":{"available":145,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12960","name":"Cover #12960","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12961","name":"Shadows of Alarm..!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12962","name":"Cover #12962","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12963","name":"Death by Debate","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12964","name":"The Ultimate Super-Villain Team-Up!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12965","name":"Dark Congress!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14056","name":"Gravity Storm!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14057","name":"Gravity Storm!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14058","name":"Cover #14058","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14059","name":"Cunning Attractions!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14060","name":"Now Who's The Strongest One There Is?!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14061","name":"Shaw's Gambit","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14062","name":"Introducing--The Tri-Sentinel","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14063","name":"Power Prey!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14916","name":"Avengers (1963) #311 Cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14917","name":"The Weakest Point","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14918","name":"Avengers (1963) #312 Cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14919","name":"Has the Whole World Gone Mad?!?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14920","name":"Avengers (1963) #313 Cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14921","name":"Thieves Honor","type":"interiorStory"}],"returned":20},"comics":{"available":52,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12744","name":"Alpha Flight (1983) #79"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12746","name":"Alpha Flight (1983) #80"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6734","name":"Amazing Spider-Man (1963) #326"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6735","name":"Amazing Spider-Man (1963) #327"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6736","name":"Amazing Spider-Man (1963) #328"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6737","name":"Amazing Spider-Man (1963) #329"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7188","name":"Avengers (1963) #311"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7189","name":"Avengers (1963) #312"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7190","name":"Avengers (1963) #313"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6933","name":"Avengers Annual (1967) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17795","name":"Avengers West Coast (1985) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17796","name":"Avengers West Coast (1985) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17797","name":"Avengers West Coast (1985) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17695","name":"Avengers West Coast: Darker than Scarlet (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7746","name":"Captain America (1968) #365"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7747","name":"Captain America (1968) #366"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7748","name":"Captain America (1968) #367"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8268","name":"Daredevil (1963) #275"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8269","name":"Daredevil (1963) #276"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20170","name":"Doctor Strange, Sorcerer Supreme (1988) #11"}],"returned":20},"series":{"available":22,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1987","name":"Amazing Spider-Man (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3623","name":"Avengers West Coast (1985 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3462","name":"Avengers West Coast: Darker than Scarlet (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3741","name":"Doctor Strange, Sorcerer Supreme (1988 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron Man (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2055","name":"New Mutants (1983 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2271","name":"Peter Parker, the Spectacular Spider-Man (1976 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5860","name":"Punisher War Journal (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3695","name":"Quasar (1989 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2288","name":"Silver Surfer (1987 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2083","name":"Thor (1966 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2092","name":"Web of Spider-Man (1985 - 1995)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days of Future Present"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis Attacks"}},{"id":227,"title":"Age of Apocalypse","description":"In a twisted version of the world they knew, the X-Men battle against the eternal mutant Apocalypse as Bishop seeks to repair the timeline. Legion, Xavier's own son, attempts to kill off all of Xavier's enemies; however, when Legion attempts to murder Magneto, Xavier sacrifices his own life to save Magnus. As a result, Magneto casts off his anti-human sentiments and carries on Xavier's dream of peaceful co-existence, thereby founding the X-Men.","resourceURI":"http://gateway.marvel.com/v1/public/events/227","urls":[{"type":"detail","url":"http://marvel.com/comics/events/227/age_of_apocalypse?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Apocalypse?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-10-18T12:28:36-0400","start":"1995-03-01 00:00:00","end":"1996-06-01 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/e0/51ca0e08a6546","extension":"jpg"},"creators":{"available":108,"collectionURI":"http://gateway.marvel.com/v1/public/events/227/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3626","name":"Pat Brosseau","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1950","name":"Joe Andreani","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4394","name":"Liquid Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","name":"Toinay","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1836","name":"Terry Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato Arlem","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","name":"Joe Bennett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1288","name":"Jerry Bingham","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1192","name":"Ian Churchill","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim Calafiore","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly Corvese","role":"editor"}],"returned":20},"characters":{"available":65,"collectionURI":"http://gateway.marvel.com/v1/public/events/227/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009149","name":"Abyss"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009158","name":"Arcade"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009163","name":"Aurora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009596","name":"Banshee (Theresa Rourke)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009182","name":"Bishop"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009205","name":"Boomer"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009217","name":"Callisto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009269","name":"Death"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"}],"returned":20},"stories":{"available":193,"collectionURI":"http://gateway.marvel.com/v1/public/events/227/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6850","name":"X-Men Chronicles 1-2; Tales from the AOA: By the Light","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7272","name":"X-Calibre 2-3, Astonishing X-Men 2-4, Generation Next 2-3, X-Man 2-3, Factor X 3, Amazing X-Men 3, Gambit & The X-Ternals 3, X-U","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7273","name":"X-Calibre 2-3, Astonishing X-Men 2-4, Generation Next 2-3, X-Man 2-3, Factor X 3, Amazing X-Men 3, Gambit & The X-Ternals 3, X-U","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24492","name":"Interior #24492","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24493","name":"Endings","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24495","name":"Racing the Night","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26280","name":"Cover #26280","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A Beginning","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32818","name":"Cover #32818","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32819","name":"Some of Us Looking to the Stars","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32820","name":"X-Facts: The Dream is Over","type":"text article"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32821","name":"Cover #32821","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32822","name":"Where No External Has Gone Before","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32823","name":"X-Facts: Reality Checked","type":"text article"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32824","name":"Cover #32824","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32825","name":"To the Limits of Infinity","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32826","name":"X-Facts: Where Have All The Heroes Gone?","type":"text article"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32827","name":"Cover #32827","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32828","name":"The Maze","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32829","name":"X-Facts: Final Reflections","type":""}],"returned":20},"comics":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/events/227/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17701","name":"Age of Apocalypse: The Chosen (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17731","name":"Amazing X-Men (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17732","name":"Amazing X-Men (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17733","name":"Amazing X-Men (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17734","name":"Amazing X-Men (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17735","name":"Astonishing X-Men (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17736","name":"Astonishing X-Men (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17737","name":"Astonishing X-Men (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17738","name":"Astonishing X-Men (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17870","name":"Blink (2001) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17871","name":"Blink (2001) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17872","name":"Blink (2001) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17873","name":"Blink (2001) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20044","name":"Factor X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20045","name":"Factor X (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20046","name":"Factor X (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20047","name":"Factor X (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16077","name":"Gambit and the X-Ternals (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16078","name":"Gambit and the X-Ternals (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit and the X-Ternals (1995) #3"}],"returned":20},"series":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/events/227/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3618","name":"Amazing X-Men (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","name":"Astonishing X-Men (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3737","name":"Factor X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3734","name":"Generation Next (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3676","name":"Tales from the Age of Apocalypse: Sinster Blo (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales from the Age of Apocalyspse: By the Lig (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","name":"X-Calibre (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3642","name":"X-Man Annual (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: Alpha (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","name":"X-Men: Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1452","name":"X-Men: The Complete Age of Apocalypse Epic Book 1 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: The Complete Age of Apocalypse Epic Book 2 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: The Complete Age of Apocalypse Epic Book 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/239","name":"Crossing"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/219","name":"Siege of Darkness"}},{"id":314,"title":"Age of Ultron","description":"In a 10-issue event written by Brian Michael Bendis with art by Bryan Hitch, Carlos Pacheco, Brandon Peterson and more, the heroes of the Marvel Universe have already fallen with the robot Ultron remaking the world in his image. The surviving Avengers, X-Men and others must fight through time and space in the hope of defeating their foe by any means necessary!","resourceURI":"http://gateway.marvel.com/v1/public/events/314","urls":[{"type":"detail","url":"http://marvel.com/comics/events/314/age_of_ultron?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Ultron?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-25T17:47:28-0400","start":"2013-03-06 00:00:00","end":"2013-06-19 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/51ca0fc4c83c8","extension":"jpg"},"creators":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman Andrasofszky","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11748","name":"Marco Checchetto","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12277","name":"Jimmy Cheung","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12297","name":"Andre Lima Araujo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/820","name":"Leonard Kirk","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian Michael Bendis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10023","name":"Cullen Bunn","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11680","name":"Gerard Gorman Duggan","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8843","name":"Joshua Fialkov","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12253","name":"Joshua Hale Fialkov","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5144","name":"Kathryn Immonen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10066","name":"MATT KINDT","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike Deodato","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/436","name":"Adi Granov","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan Hitch","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/306","name":"Phil Jimenez","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam Kubert","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/208","name":"Paco Medina","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/101","name":"Carlos Pacheco","role":"artist"}],"returned":20},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009685","name":"Ultron"}],"returned":1},"stories":{"available":40,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82809","name":"Cover #82809","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82810","name":"Interior #82810","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82811","name":"Cover #82811","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82812","name":"Interior #82812","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82813","name":"Cover #82813","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82814","name":"Interior #82814","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103326","name":"cover from Avengers: Age of Ultron (2013) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103327","name":"story from Avengers: Age of Ultron (2013) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103328","name":"cover from Avengers: Age of Ultron (2013) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103329","name":"story from Avengers: Age of Ultron (2013) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103330","name":"cover from Avengers: Age of Ultron (2013) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103331","name":"story from Avengers: Age of Ultron (2013) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103332","name":"cover from Avengers: Age of Ultron (2013) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103333","name":"story from Avengers: Age of Ultron (2013) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103334","name":"cover from Avengers: Age of Ultron (2013) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103335","name":"story from Avengers: Age of Ultron (2013) #10","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105614","name":"cover from Avengers: Age of Ultron (2013) #1 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105615","name":"story from Avengers: Age of Ultron (2013) #1 (ULTRON VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105618","name":"cover from Avengers: Age of Ultron (2013) #2 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105619","name":"story from Avengers: Age of Ultron (2013) #2 (ULTRON VARIANT)","type":"interiorStory"}],"returned":20},"comics":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37405","name":"AGE OF ULTRON (2013) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37406","name":"AGE OF ULTRON (2013) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37407","name":"AGE OF ULTRON (2013) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45904","name":"AGE OF ULTRON (2013) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45905","name":"AGE OF ULTRON (2013) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45906","name":"AGE OF ULTRON (2013) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45907","name":"AGE OF ULTRON (2013) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45908","name":"AGE OF ULTRON (2013) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47072","name":"Age of Ultron: AI (2013) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48172","name":"Hunger (2013) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48174","name":"Hunger (2013) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47001","name":"AGE OF ULTRON (2013) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47003","name":"AGE OF ULTRON (2013) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47355","name":"Fearless Defenders (2013) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48175","name":"Hunger (2013) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48176","name":"Hunger (2013) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47145","name":"Superior Spider-Man (2013) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47394","name":"Ultron (2013) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47343","name":"Uncanny Avengers (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47395","name":"Wolverine & the X-Men (2011) #27"}],"returned":20},"series":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/17318","name":"AGE OF ULTRON (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17719","name":"Age of Ultron: AI (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17370","name":"Fearless Defenders (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18248","name":"Hunger (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17745","name":"Superior Spider-Man (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17900","name":"Ultron (2013 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny Avengers (2012 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13910","name":"Wolverine & the X-Men (2011 - Present)"}],"returned":8},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/311","name":"Marvel NOW!"}},{"id":303,"title":"Age of X","description":"In a strange reality where the X-Men never came to be, the war between humans and mutants has escalated to a level never before seen. What has become of our heroes and who will survive as the final war commences?","resourceURI":"http://gateway.marvel.com/v1/public/events/303","urls":[{"type":"detail","url":"http://marvel.com/comics/events/303/age_of_x?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-28T18:34:27-0400","start":"2011-01-26 00:00:00","end":"2011-05-01 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/40/51ca12a34615b","extension":"jpg"},"creators":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan Abnett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/366","name":"Mike Carey","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5635","name":"Simon Spurrier","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris Bachalo","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/648","name":"Simone Bianchi","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1372","name":"Mico Suayan","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/758","name":"Leinil Francis Yu","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/273","name":"Leandro Fernandez","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4981","name":"Steve Kurth","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/757","name":"Clay Mann","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1103","name":"Khoi Pham","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11737","name":"Daniel Ketchum","role":"editor"}],"returned":13},"characters":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009318","name":"Ghost Rider (Johnny Blaze)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009366","name":"Invisible Woman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009399","name":"Legion"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010944","name":"Magneto (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009410","name":"Moira MacTaggert"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011336","name":"New Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009504","name":"Professor X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010791","name":"Sub-Mariner"}],"returned":20},"stories":{"available":22,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80882","name":"X-Men Legacy (2008) #247","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80883","name":"X-Men Legacy (2008) #247","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80892","name":"X-Men Legacy #245","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80893","name":"X-Men Legacy #245","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80896","name":"Cover #80896","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80897","name":"Interior #80897","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80898","name":"Cover #80898","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80899","name":"Interior #80899","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80904","name":"X-MEN LEGACY 246","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80905","name":"X-MEN LEGACY 246","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81019","name":"New Mutants #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81020","name":"New Mutants #22 ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81023","name":"Cover #81023","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81024","name":"Interior #81024","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81033","name":"New Mutants (2009) #23 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81034","name":"NEW MUTANTS #23 ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83523","name":"Cover #83523","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83524","name":"Interior #83524 ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/84589","name":"Cover #84589","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/84590","name":"Interior #84590 ","type":"interiorStory"}],"returned":20},"comics":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37996","name":"Age Of X: Alpha (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38524","name":"Age of X: Universe (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38523","name":"Age of X: Universe (2011) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36495","name":"New Mutants (2009) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36502","name":"New Mutants (2009) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36497","name":"New Mutants (2009) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36431","name":"X-Men Legacy (2008) #245"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36437","name":"X-Men Legacy (2008) #246"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36426","name":"X-Men Legacy (2008) #247"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36433","name":"X-Men Legacy (2008) #248"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36434","name":"X-Men Legacy (2008) #249"}],"returned":11},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13615","name":"Age Of X: Alpha (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7455","name":"New Mutants (2009 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3754","name":"X-Men Legacy (2008 - 2012)"}],"returned":4},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear Itself"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos War"}},{"id":229,"title":"Annihilation","description":"Parallel stories pitting the Silver Surfer, Nova, Ronan the Accuser and the Super-Skrull against Annihilus and his forces lead into a climatic six-issue war written by Keith Giffen with art by Andrea DiVito! Follow the machinations of Thanos, the power of Galactus and the early seeds that will create the Guardians of the Galaxy!","resourceURI":"http://gateway.marvel.com/v1/public/events/229","urls":[{"type":"detail","url":"http://marvel.com/comics/events/229/annihilation?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Annihilation?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-25T15:16:21-0400","start":"2007-06-20 00:00:00","end":"2008-06-01 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/51c9ec5e90de1","extension":"jpg"},"creators":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan Abnett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/368","name":"Simon Furman","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/400","name":"Keith Giffen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1104","name":"Javier Grillomarxuach","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/888","name":"Michael Hoskin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/643","name":"Stuart Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato Arlem","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/969","name":"Mitch Breitweiser","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim Calafiore","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1141","name":"Giuseppe Camuncoli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/194","name":"Scott Kolins","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4261","name":"Jorge Pereira Lucas","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9137","name":"Mike McKone","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/529","name":"June Chung","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8331","name":"Dave McCaig","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8522","name":"Gabriele Dell'Otto","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/560","name":"Rick Magyar","role":"inker"}],"returned":20},"characters":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010735","name":"Drax"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009477","name":"Nova"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010778","name":"Quasar (Wendell Vaughn)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010344","name":"Ronan the Accuser"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009592","name":"Silver Surfer"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009639","name":"Super-Skrull"}],"returned":6},"stories":{"available":71,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4848","name":"1 of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4850","name":"2 of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4852","name":"3 of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4854","name":"4 of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5923","name":"1 of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5924","name":"1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5925","name":"Annihilation: Silver Surfer (2006) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5926","name":"Annihilation: Silver Surfer (2006) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5927","name":"Annihilation: Silver Surfer (2006) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5928","name":"Annihilation: Silver Surfer (2006) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5929","name":"Annihilation: Silver Surfer (2006) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5930","name":"Annihilation: Silver Surfer (2006) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5931","name":"Annihilation: Silver Surfer (2006) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5932","name":"Annihilation: Silver Surfer (2006) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5933","name":"Annihilation: Ronan (2006) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5934","name":"Annihilation: Ronan (2006) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5935","name":"Annihilation: Ronan (2006) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5936","name":"Annihilation: Ronan (2006) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5937","name":"Annihilation: Ronan (2006) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5938","name":"Annihilation: Ronan (2006) #3","type":"interiorStory"}],"returned":20},"comics":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4788","name":"Annihilation (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5078","name":"Annihilation (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5230","name":"Annihilation (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5529","name":"Annihilation (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5655","name":"Annihilation (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5795","name":"Annihilation (2006) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6028","name":"Annihilation Book 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16666","name":"Annihilation Book 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6292","name":"Annihilation Book 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16667","name":"Annihilation Book 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15907","name":"Annihilation Book 3 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17329","name":"Annihilation Book 3 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13499","name":"Annihilation Saga (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5976","name":"Annihilation: Heralds of Galactus (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6175","name":"Annihilation: Heralds of Galactus (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4111","name":"Annihilation: Nova (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4221","name":"Annihilation: Nova (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4318","name":"Annihilation: Nova (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4473","name":"Annihilation: Nova (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3985","name":"Annihilation: Prologue (2006)"}],"returned":20},"series":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3613","name":"Annihilation (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2973","name":"Annihilation Book 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1924","name":"Annihilation Book 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2974","name":"Annihilation Book 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1971","name":"Annihilation Book 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2436","name":"Annihilation Book 3 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3131","name":"Annihilation Book 3 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2211","name":"Annihilation Saga (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1864","name":"Annihilation: Heralds of Galactus (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1081","name":"Annihilation: Nova (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1077","name":"Annihilation: Prologue (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1079","name":"Annihilation: Ronan (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1078","name":"Annihilation: Silver Surfer (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1080","name":"Annihilation: Super-Skrull (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1115","name":"Annihilation: The Nova Corps (2006)"}],"returned":15},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/293","name":"Annihilation: Conquest"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"}},{"id":293,"title":"Annihilation: Conquest","description":"The Phalanx have a new leader in the killer robot Ultron, and he's looking for nothing less than univesal conquest! They've already taken the Kree and assimilated heroes like Ronan and Drax; can a rag tag group including Star-Lord, Quasar, Wraith and the reborn Adam Warlock stop them?","resourceURI":"http://gateway.marvel.com/v1/public/events/293","urls":[{"type":"detail","url":"http://marvel.com/comics/events/293/annihilation_conquest?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-28T17:55:53-0400","start":"2007-06-20 00:00:00","end":"2009-01-14 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/f0/51c9ed1304bb7","extension":"jpg"},"creators":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/events/293/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8571","name":"Guru-eFX","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8504","name":"Frank D'Armata","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10454","name":"Nathan Fairbairn","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1936","name":"Gina Going","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan Abnett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/400","name":"Keith Giffen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1104","name":"Javier Grillomarxuach","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4201","name":"Bob Almond","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5030","name":"Rick Basaldua","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/362","name":"Scott Hanna","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellinton Alves","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5029","name":"Eric Basaldua","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/174","name":"Sean Chen","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1068","name":"Brian Denham","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5742","name":"Timothy Green","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5634","name":"Aleksi Briclot","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/436","name":"Adi Granov","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8635","name":"Randy Gentile","role":"letterer"}],"returned":20},"characters":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/events/293/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009195","name":"Blastaar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011027","name":"Captain Universe"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011037","name":"Deathcry"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010763","name":"Gamora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010743","name":"Groot"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011300","name":"High Evolutionary"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011026","name":"Mantis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009451","name":"Moondragon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009477","name":"Nova"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009523","name":"Quasar (Phyla-Vell)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010744","name":"Rocket Raccoon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010344","name":"Ronan the Accuser"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010733","name":"Star-Lord (Peter Quill)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009639","name":"Super-Skrull"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009685","name":"Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010737","name":"Wraith"}],"returned":17},"stories":{"available":54,"collectionURI":"http://gateway.marvel.com/v1/public/events/293/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32454","name":"1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32618","name":"Annihilation: Conquest 1 of 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32619","name":"Annihilation: Conquest 1 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32657","name":"Annihilation Conquest: Quasar (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32658","name":"1 of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32673","name":"Annihilation Conquest: Wraith (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32674","name":" Annihilation Conquest: Wraith (2007) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32691","name":"Annihilation Conquest: Starlord (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32692","name":"Annihilation Conquest: Starlord (2007) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33002","name":"Annihilation: Conquest 2 of 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33003","name":"Annihilation: Conquest 2 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33043","name":"Annihilation Conquest: Quasar (2007) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33058","name":" Annihilation Conquest: Wraith (2007) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33059","name":"Annihilation Conquest: Wraith (2007) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33072","name":"Annihilation Conquest: Starlord (2007) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33073","name":"Annihilation Conquest: Starlord (2007) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33339","name":"Annihilation: Conquest 3 of 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33340","name":"Annihilation: Conquest 3 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33341","name":"Annihilation: Conquest 4 of 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33342","name":"Annihilation: Conquest 4 of 4","type":"interiorStory"}],"returned":20},"comics":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/events/293/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17271","name":"Annihilation: Conquest (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17405","name":"Annihilation: Conquest (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17645","name":"Annihilation: Conquest (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20686","name":"Annihilation: Conquest (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20885","name":"Annihilation: Conquest (2007) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21016","name":"Annihilation: Conquest (2007) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15992","name":"Annihilation: Conquest - Quasar (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16176","name":"Annihilation: Conquest - Quasar (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16573","name":"Annihilation: Conquest - Quasar (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16574","name":"Annihilation: Conquest - Quasar (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16009","name":"Annihilation: Conquest - Starlord (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16191","name":"Annihilation: Conquest - Starlord (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16598","name":"Annihilation: Conquest - Starlord (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16599","name":"Annihilation: Conquest - Starlord (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16000","name":"Annihilation: Conquest - Wraith (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16184","name":"Annihilation: Conquest - Wraith (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16585","name":"Annihilation: Conquest - Wraith (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16586","name":"Annihilation: Conquest - Wraith (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17688","name":"Annihilation: Conquest Book 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22404","name":"Annihilation: Conquest Book 1 (Trade Paperback)"}],"returned":20},"series":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/events/293/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3061","name":"Annihilation: Conquest (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2524","name":"Annihilation: Conquest - Quasar (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2541","name":"Annihilation: Conquest - Starlord (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2532","name":"Annihilation: Conquest - Wraith (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6025","name":"Annihilation: Conquest Book 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3454","name":"Annihilation: Conquest Book 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6619","name":"Annihilation: Conquest Book 2 (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5239","name":"Annihilation: Conquest Book 2 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2420","name":"Annihilation: Conquest Prologue (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2504","name":"Nova (2007 - 2010)"}],"returned":10},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World War Hulk"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"}},{"id":231,"title":"Armor Wars","description":"Tony Stark discovers that someone has been stealing his Iron Man tech and selling it to supervillains. He decides he must do whatever it takes to reacquire -- or destroy -- the stolen tech.","resourceURI":"http://gateway.marvel.com/v1/public/events/231","urls":[{"type":"detail","url":"http://marvel.com/comics/events/231/armor_wars?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Armor_Wars?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2014-01-02T12:19:28-0500","start":"1987-12-10 00:00:00","end":"2010-03-17 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/d0/51ca13895b3ab","extension":"jpg"},"creators":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark Bright","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/180","name":"Kieron Dwyer","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11419","name":"Barry Windsor-Smith","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice Chiang","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2028","name":"John Morelli","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1894","name":"Bill Oakley","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5764","name":"Ron Frenz","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2697","name":"Butch Guice","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/259","name":"Mark Gruenwald","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1282","name":"Ralph Macchio","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3036","name":"David Michelinie Barry WindsorSmith","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1247","name":"Bob Layton","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8125","name":"Bob McLeod","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3035","name":"David Michelinie Bob Layton","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3034","name":"David Michelinie Bob Layton","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2784","name":"David Michelinie","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1832","name":"Bob Sharen","role":"colorist"}],"returned":18},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009179","name":"Beetle"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009251","name":"Crimson Dynamo"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009287","name":"Electro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009572","name":"Serpent Society"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009628","name":"Stingray (Walter Newell)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009672","name":"Titanium Man (Topolov)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009719","name":"Wonder Man"}],"returned":10},"stories":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17945","name":"Cover #17945","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17946","name":"Breakout","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17947","name":"Cover #17947","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17948","name":"Break-In","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17949","name":"Free Speech","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17950","name":"In Our Midst","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19414","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19415","name":"Interior #19415","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19416","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19417","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19418","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19419","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19420","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19421","name":"Who Guards the Guardsmen?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19422","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19423","name":"Stark Wars Chapter 5: Red Snow","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19426","name":"Death of the Hero!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19427","name":"Stark Wars Chapter 6: The Day the Hero Died","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19428","name":"Interior #19428","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19429","name":"Stark Wars: Chapter 7 Reborn Again","type":"interiorStory"}],"returned":20},"comics":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7721","name":"Captain America (1968) #340"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7722","name":"Captain America (1968) #341"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9467","name":"Iron Man (1968) #225"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9468","name":"Iron Man (1968) #226"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9469","name":"Iron Man (1968) #227"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9470","name":"Iron Man (1968) #228"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9471","name":"Iron Man (1968) #229"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9473","name":"Iron Man (1968) #230"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9474","name":"Iron Man (1968) #231"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9475","name":"Iron Man (1968) #232"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5872","name":"Iron Man: Armor Wars (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29065","name":"Iron Man: Armor Wars Prologue (Trade Paperback)"}],"returned":12},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron Man (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1846","name":"Iron Man: Armor Wars (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9479","name":"Iron Man: Armor Wars Prologue (2010)"}],"returned":4},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary War"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/258","name":"Kraven's Last Hunt"}},{"id":233,"title":"Atlantis Attacks","description":"Ghaur returns to complete his quest to resurrect the evil god Set, but his plan is opposed by Earth's heroes.","resourceURI":"http://gateway.marvel.com/v1/public/events/233","urls":[{"type":"detail","url":"http://marvel.com/comics/events/233/atlantis_attacks?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Atlantis_Attacks?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-25T13:49:06-0400","start":"1989-01-01 00:00:00","end":"2011-02-16 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/60/51c9d7f42a0c8","extension":"jpg"},"creators":{"available":103,"collectionURI":"http://gateway.marvel.com/v1/public/events/233/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11401","name":"various","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1279","name":"Jon Bogdanove","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark Bright","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich Buckler","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6675","name":"Don Ald","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1836","name":"Terry Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2077","name":"Hilary Barta","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5823","name":"Danny Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3074","name":"Ralph Cabrera","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1898","name":"Mike DeCarlo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2047","name":"Craig Anderson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John Byrne","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/270","name":"Gene Colan","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8018","name":"Amanda Conner","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3456","name":"Gavin Curtis","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3459","name":"Judy Bogdanove","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/954","name":"Gerry Conway","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice Chiang","role":"letterer"}],"returned":20},"characters":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/events/233/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010813","name":"Celestials"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010807","name":"Eternals"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010868","name":"Firebird"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009315","name":"Gateway"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009356","name":"Human Torch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009366","name":"Invisible Woman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"}],"returned":20},"stories":{"available":75,"collectionURI":"http://gateway.marvel.com/v1/public/events/233/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15311","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15312","name":"For Crown and Conquest","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15313","name":"Savior of the Lost Artifacts","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15314","name":"Mission: Impossible Man","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15315","name":"Doctor Doom's Strength Comparison Page","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15316","name":"Game, Set, and Match: Ch. 14","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17393","name":"Avengers Annual (1967) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17394","name":"Avengers Assembled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17395","name":"The Initiation of Quasar","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17396","name":"Cap's Avengerability Analysis","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17397","name":"The Saga of the Serpent Crown Chapter 8: Manifest Destiny","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19855","name":"Atlantis Attacks Part 3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19856","name":"Double Cross","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19857","name":"Jubilation Day","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19858","name":"The Saga of the Serpent Crown Part 3: Serpent In the Garden","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21535","name":"Cover #21535","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21536","name":"Splash!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21622","name":"Cover #21622","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21623","name":"","type":"table of contents"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21624","name":"Here Be Monsters!","type":"interiorStory"}],"returned":20},"comics":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/events/233/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16898","name":"Amazing Spider-Man Annual (1964) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29321","name":"Atlantis Attacks (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29322","name":"Atlantis Attacks (DM Only) (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6932","name":"Avengers Annual (1967) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17794","name":"Avengers West Coast (1985) #52"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17842","name":"Avengers West Coast Annual (1989) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8701","name":"Fantastic Four Annual (1963) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19861","name":"Iron Man Annual (1976) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10417","name":"New Mutants (1983) #76"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10339","name":"New Mutants Annual (1984) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16675","name":"Thor Annual (1966) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18326","name":"What If? (1989) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23512","name":"X-Factor Annual (1986) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12359","name":"X-Men Annual (1970) #13"}],"returned":14},"series":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/events/233/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing Spider-Man Annual (1964 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10030","name":"Atlantis Attacks (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10031","name":"Atlantis Attacks (DM Only) (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3623","name":"Avengers West Coast (1985 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3624","name":"Avengers West Coast Annual (1989 - 1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3723","name":"Iron Man Annual (1976 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2055","name":"New Mutants (1983 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2053","name":"New Mutants Annual (1984 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2978","name":"Thor Annual (1966 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor Annual (1986 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men Annual (1970 - 1991)"}],"returned":14},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts of Vengeance!"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"}},{"id":234,"title":"Avengers Disassembled","description":"Writer Brian Michael Bendis kicks off his historic run with the Avengers by bringing the previous era to a close alongside artist David Finch! Chaos reigns when of Earth’s Mightiest Heroes turns against their teammates, leading the Avengers into a battle that not all will survive! Featuring Iron Man, Captain America, Hawkeye, the Scarlet Witch and more!","resourceURI":"http://gateway.marvel.com/v1/public/events/234","urls":[{"type":"detail","url":"http://marvel.com/comics/events/234/avengers_disassembled?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Avengers_Disassembled?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-10-18T16:38:16-0400","start":"2004-07-28 00:00:00","end":"2005-01-01 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/03/52127e32d3671","extension":"jpg"},"creators":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/events/234/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/498","name":"Greg Adams","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/544","name":"Wayne Faucher","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/492","name":"Tom Feister","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/476","name":"Drew Geraci","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/763","name":"Jack Jadson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/438","name":"Karl Kesel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/314","name":"Neal Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve Epting","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10432","name":"Dave Johnson","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian Michael Bendis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/55","name":"Paul Jenkins","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","name":"Joe Bennett","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5106","name":"Scot Eaton","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/248","name":"David Finch","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/460","name":"Tony Harris","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8504","name":"Frank D'Armata","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/430","name":"Edgar Delgado","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/618","name":"Transparency Digital","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8635","name":"Randy Gentile","role":"letterer"}],"returned":20},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/events/234/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010771","name":"Excalibur"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009562","name":"Scarlet Witch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009664","name":"Thor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009707","name":"Wasp"}],"returned":10},"stories":{"available":80,"collectionURI":"http://gateway.marvel.com/v1/public/events/234/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/586","name":"Interior #586","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/882","name":"Cover #882","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/883","name":"Interior #883","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/884","name":"Cover #884","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/885","name":"Interior #885","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/890","name":"Cover #890","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/891","name":"Interior #891","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/892","name":"Cover #892","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/893","name":"Interior #893","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/894","name":"AVENGERS DISASSEMBLED TIE-IN! “RAGNAROK” PART 4 (OF 6) What makes a god? Is it birthright, is it happenstance, or is it in the m","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/895","name":"AVENGERS DISASSEMBLED TIE-IN! “RAGNAROK” PART 4 (OF 6) What makes a god? Is it birthright, is it happenstance, or is it in the m","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/896","name":"AVENGERS DISASSEMBLED TIE-IN! \"RAGNAROK\" PART 6 (OF 6) It's the end of all that is, and you've got a ringside seat for the last ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/897","name":"AVENGERS DISASSEMBLED TIE-IN! \"RAGNAROK\" PART 6 (OF 6) It's the end of all that is, and you've got a ringside seat for the last ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/920","name":"Cover #920","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/921","name":"Interior #921","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/922","name":"AVENGERS DISASSEMBLED TIE-IN! \"FOURTITUDE\" PART 2 (OF 3) With public opinion of the FF at an all-time low and with all of Manhat","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/923","name":"AVENGERS DISASSEMBLED TIE-IN! \"FOURTITUDE\" PART 2 (OF 3) With public opinion of the FF at an all-time low and with all of Manhat","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/924","name":"AVENGERS DISASSEMBLED TIE-IN! \"FOURTITUDE\" FINALE! PART 3 (OF 3) Galactus the World-Eater is coming to Earth to choose one of th","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/925","name":"AVENGERS DISASSEMBLED TIE-IN! \"FOURTITUDE\" FINALE! PART 3 (OF 3) Galactus the World-Eater is coming to Earth to choose one of th","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/987","name":"Cover #987","type":"cover"}],"returned":20},"comics":{"available":40,"collectionURI":"http://gateway.marvel.com/v1/public/events/234/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/532","name":"Avengers (1998) #500"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/767","name":"Avengers (1998) #501"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/845","name":"Avengers (1998) #502"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/923","name":"Avengers (1998) #503"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1703","name":"Avengers Disassembled (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5685","name":"Avengers Disassembled (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1490","name":"Avengers Disassembled: Captain America (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1491","name":"Avengers Disassembled: Iron Man (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23900","name":"Avengers Disassembled: Iron Man, Thor & Captain America (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1481","name":"Avengers Disassembled: Thor (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90","name":"Avengers Finale (2004) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/595","name":"Captain America (2002) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/514","name":"Captain America (2002) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/801","name":"Captain America (2002) #31"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/893","name":"Captain America (2002) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/605","name":"Captain America & the Falcon (2004) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/573","name":"Captain America & the Falcon (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4969","name":"Captain America & the Falcon (2004) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1448","name":"Excalibur (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/748","name":"Fantastic Four (1998) #517"}],"returned":20},"series":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/234/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1795","name":"Avengers Disassembled (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/344","name":"Avengers Disassembled (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1398","name":"Avengers Disassembled: Captain America (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1403","name":"Avengers Disassembled: Iron Man (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7067","name":"Avengers Disassembled: Iron Man, Thor & Captain America (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1359","name":"Avengers Disassembled: Thor (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/829","name":"Avengers Finale (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/716","name":"Captain America & the Falcon (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/740","name":"Excalibur (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2572","name":"Iron Man (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/556","name":"Spectacular Spider-Man (2003 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/581","name":"Thor (1998 - 2004)"}],"returned":15},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy of the State"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum Security"}},{"id":310,"title":"Avengers VS X-Men","description":"A 12-issue event written by the unprecedented team of Brian Michael Bendis, Jason Aaron, Jonathan Hickman, Ed Brubaker and Matt Fraction with art by the blockbuster trio of John Romita Jr., Olivier Coipel and Adam Kubert, Avengers VS X-Men brings Marvel's biggest characters up against the greatest threat they've ever faced: each other!","resourceURI":"http://gateway.marvel.com/v1/public/events/310","urls":[{"type":"detail","url":"http://marvel.com/comics/events/310/avengers_vs_x-men?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-07-01T21:41:57-0400","start":"2012-04-04 00:00:00","end":"2012-09-19 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/5109a1f93b543","extension":"jpg"},"creators":{"available":68,"collectionURI":"http://gateway.marvel.com/v1/public/events/310/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8571","name":"Guru-eFX","role":"Colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/520","name":"Rainier Beredo","role":"Colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11494","name":"Bettie Breitweiser","role":"Colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"Colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9937","name":"Jim Charalampidis","role":"Colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11463","name":"Jason Aaron","role":"Writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian Michael Bendis","role":"Writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel Acuna","role":"Penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11798","name":"Matteo Buffagni","role":"Penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/16","name":"Alan Davis","role":"Penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris Bachalo","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9799","name":"David Baldeon","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1192","name":"Ian Churchill","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6170","name":"Olivier Coipel","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11875","name":"Nick Bradshaw","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark Brooks","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1141","name":"Giuseppe Camuncoli","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim Cheung","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/367","name":"Ed Brubaker","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Joe Caramagna","role":"letterer"}],"returned":20},"characters":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/events/310/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011428","name":"Hope Summers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009367","name":"Iron Fist (Danny Rand)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009538","name":"Iron Patriot (James Rhodes)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009382","name":"Juggernaut"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009215","name":"Luke Cage"}],"returned":20},"stories":{"available":128,"collectionURI":"http://gateway.marvel.com/v1/public/events/310/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/77811","name":"Cover #77811","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/77812","name":"Interior #77812","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/84703","name":"Cover #84703","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/84704","name":"Interior #84704","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90279","name":"Cover #90279","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90281","name":"Avengers: X-​Sanction (2011) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90282","name":"Interior #90282","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90331","name":"Interior #90331","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90964","name":"Cover #90964","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90965","name":"Interior #90965","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91099","name":"Cover #91099","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91100","name":"Interior #91100","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91101","name":"Cover #91101","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91102","name":"Interior #91102","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91103","name":"Cover #91103","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91104","name":"Interior #91104","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91107","name":"Cover #91107","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91108","name":"Interior #91108","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91117","name":"Cover #91117","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91118","name":"Interior #91118","type":"interiorStory"}],"returned":20},"comics":{"available":44,"collectionURI":"http://gateway.marvel.com/v1/public/events/310/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35232","name":"Avengers (2010) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40405","name":"Avengers (2010) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40410","name":"Avengers (2010) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40249","name":"Avengers Academy (2010) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40251","name":"Avengers Academy (2010) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40250","name":"Avengers Academy (2010) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40253","name":"Avengers Academy (2010) #31"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40254","name":"Avengers Academy (2010) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40264","name":"Avengers Academy (2010) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40258","name":"Avengers Academy (2010) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41188","name":"Avengers VS X-Men (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41191","name":"Avengers VS X-Men (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41187","name":"Avengers VS X-Men (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41193","name":"Avengers VS X-Men (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41190","name":"Avengers VS X-Men (2012) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41189","name":"Avengers VS X-Men (2012) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41192","name":"Avengers VS X-Men (2012) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41275","name":"Avengers VS X-Men (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41277","name":"Avengers VS X-Men (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41276","name":"Avengers VS X-Men (2012) #10"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/events/310/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9086","name":"Avengers Academy (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15305","name":"Avengers VS X-Men (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14703","name":"Avengers: X-Sanction (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9922","name":"New Avengers (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9799","name":"Secret Avengers (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14914","name":"Uncanny X-Men (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13910","name":"Wolverine & the X-Men (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3754","name":"X-Men Legacy (2008 - 2012)"}],"returned":9},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/311","name":"Marvel NOW!"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered Heroes"}},{"id":235,"title":"Blood and Thunder","description":"Driven mad by the machinations of the evil Valkyrie, Thor sets out to destroy the Nine Worlds but is opposed by the Silver Surfer, Warlock and the Infinity Watch.","resourceURI":"http://gateway.marvel.com/v1/public/events/235","urls":[{"type":"detail","url":"http://marvel.com/comics/events/235/blood_and_thunder?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Blood_and_Thunder?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-25T15:04:41-0400","start":"1993-11-10 00:00:00","end":"1994-02-10 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/d0/51c9e9945b152","extension":"jpg"},"creators":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4796","name":"Keith Aiken","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4201","name":"Bob Almond","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2041","name":"Bill Anderson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2386","name":"Harry Candelario","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4769","name":"Tom Christopher","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1898","name":"Mike DeCarlo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3864","name":"Pat Redding","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2047","name":"Craig Anderson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8953","name":"Lynaire Brust","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1871","name":"Ken Bruzenak","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5365","name":"Phil Hugh Felix","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1933","name":"Jack Morelli","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1936","name":"Gina Going","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2310","name":"Ovi Hondru","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1929","name":"Ian Laughlin","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1301","name":"Tom Grindberg","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/372","name":"Angel Medina","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/444","name":"Tom Raney","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/658","name":"Ron Lim","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2673","name":"Ron Marz","role":"writer"}],"returned":20},"characters":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010735","name":"Drax"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011061","name":"Eternity"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010763","name":"Gamora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009451","name":"Moondragon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009480","name":"Odin"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010762","name":"Pip"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009588","name":"Sif"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009592","name":"Silver Surfer"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009652","name":"Thanos"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009664","name":"Thor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010350","name":"Valkyrie"}],"returned":12},"stories":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17292","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17293","name":"Distant Thunder [Blood and Thunder Part One]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17294","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17295","name":"Absolute Power [Blood and Thunder Part Five]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17296","name":"Blood and Thunder Part 9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17297","name":"Ruins [Blood and Thunder Part Nine]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17298","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17299","name":"Fathers and Sons [Blood and Thunder The End]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30922","name":"Cover #30922","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30923","name":"Friends & Foes","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30924","name":"Cover #30924","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30925","name":"Strange affairs","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30926","name":"Cover #30926","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30927","name":"Common enemy","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39260","name":"Cover #39260","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39261","name":"Clash [Blood and Thunder pt. 4]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39262","name":"Cover #39262","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39263","name":"Trial [Blood and Thunder pt. 8]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39264","name":"Cover #39264","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39265","name":"Raid on Asgard [Blood and Thunder pt. 12]","type":"interiorStory"}],"returned":20},"comics":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15226","name":"Silver Surfer (1987) #86"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15227","name":"Silver Surfer (1987) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15228","name":"Silver Surfer (1987) #88"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11796","name":"Thor (1966) #468"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11797","name":"Thor (1966) #469"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11798","name":"Thor (1966) #470"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11799","name":"Thor (1966) #471"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18428","name":"Warlock and the Infinity Watch (1992) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18429","name":"Warlock and the Infinity Watch (1992) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18430","name":"Warlock and the Infinity Watch (1992) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23488","name":"Warlock Chronicles (1993) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23489","name":"Warlock Chronicles (1993) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23490","name":"Warlock Chronicles (1993) #8"}],"returned":13},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2288","name":"Silver Surfer (1987 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2083","name":"Thor (1966 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3654","name":"Warlock and the Infinity Watch (1992 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6686","name":"Warlock Chronicles (1993 - 1994)"}],"returned":4},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/219","name":"Siege of Darkness"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal Attractions"}},{"id":296,"title":"Chaos War","description":"When the Chaos King embarks on a campaign to wipe out all of existence, Hercules gathers the God Squad to stand in his way! Writers Greg Pak and Fred Van Lente join artist Khoi Pham to pit Herc and his rag tag team—including Thor, the Silver Surfer and Amadeus Cho—against an all-powerful evil as dead heroes and villains rise around them!","resourceURI":"http://gateway.marvel.com/v1/public/events/296","urls":[{"type":"detail","url":"http://marvel.com/comics/events/296/chaos_war?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-21T11:10:00-0400","start":"2010-10-01 00:00:00","end":"2011-03-06 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/20/5109a003a9112","extension":"jpg"},"creators":{"available":32,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4992","name":"Simon Bowland","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/128","name":"Doug Braithwaite","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/665","name":"Reilly Brown","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10673","name":"BRIAN Y. CHING","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/236","name":"Tommy Lee Edwards","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9394","name":"Salvador Espin","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom Grummett","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan Hitch","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6520","name":"Michael Kaluta","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6986","name":"J. M. DeMatteis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9967","name":"Jim McCann","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11347","name":"BRANDON MONTCLARE","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1433","name":"Mike Avon Oeming","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10288","name":"Marko Djurdjevic","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11579","name":"Sunny Gho","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/56","name":"Jae Lee","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/262","name":"Paul Neary","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/447","name":"Victor Olazaba","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/649","name":"Ed McGuinness","role":"penciller (cover)"}],"returned":20},"characters":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009146","name":"Abomination (Emil Blonsky)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010370","name":"Alpha Flight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010784","name":"Ares"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009163","name":"Aurora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009224","name":"Captain Marvel (Mar-Vell)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009270","name":"Deathbird"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011037","name":"Deathcry"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009328","name":"Grim Reaper"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009343","name":"Hercules"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009356","name":"Human Torch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009366","name":"Invisible Woman"}],"returned":20},"stories":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/71181","name":"Cover #71181","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/71182","name":"Interior #71182","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76014","name":"Cover From Incredible Hulks (2009) #619","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76015","name":"Interior From Incredible Hulks (2009) #619","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76109","name":" Interior #76109","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76687","name":"Cover #76687","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76688","name":"Interior #76688","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80340","name":"Interior #80340","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80343","name":"Chaos War (2010) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80344","name":"Interior #80344","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80345","name":"Chaos War (2010) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80346","name":"Interior #80346","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80351","name":"Chaos War (2010) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80352","name":"Interior #80352","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80836","name":"Cover #80836","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80837","name":"Interior #80837","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80838","name":"Cover #80838","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80839","name":"Interior #80839","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81176","name":"CHAOS WAR TPB","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81177","name":"CHAOS WAR TPB","type":"interiorStory"}],"returned":20},"comics":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36576","name":"Chaos War (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34517","name":"Chaos War (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36280","name":"Chaos War (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34535","name":"Chaos War (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34523","name":"Chaos War (2010) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36278","name":"Chaos War (2010) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37067","name":"Chaos War: Alpha Flight (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37066","name":"Chaos War: Ares (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37633","name":"Chaos War: Avengers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37068","name":"Chaos War: Chaos King (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37064","name":"Chaos War: Dead Avengers (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37085","name":"Chaos War: Dead Avengers (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37084","name":"Chaos War: Dead Avengers (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37065","name":"Chaos War: God Squad (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37062","name":"Chaos War: Thor (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37060","name":"Chaos War: Thor (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37881","name":"Chaos War: X-Men (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37882","name":"Chaos War: X-Men (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31236","name":"Incredible Hulks (2009) #618"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34050","name":"Incredible Hulks (2009) #619"}],"returned":20},"series":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/11854","name":"Chaos War (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12966","name":"Chaos War (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13260","name":"Chaos War: Alpha Flight (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13259","name":"Chaos War: Ares (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13527","name":"Chaos War: Avengers (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13261","name":"Chaos War: Chaos King (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13257","name":"Chaos War: Dead Avengers (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13258","name":"Chaos War: God Squad (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13253","name":"Chaos War: Thor (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13588","name":"Chaos War: X-Men (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8842","name":"Incredible Hulks (2009 - 2011)"}],"returned":11},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age of X"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"}},{"id":238,"title":"Civil War","description":"After a horrific tragedy raises questions on whether or not super heroes should register with the government, longtime Avengers teammates Captain America and Iron Man end up on opposite sides of the argument! Writer Mark Millar and artist Steve McNiven split the Marvel Universe in two as friend fights friend in one of the most celebrated and successful events of all-time!","resourceURI":"http://gateway.marvel.com/v1/public/events/238","urls":[{"type":"detail","url":"http://marvel.com/comics/events/238/civil_war?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Civil_War?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-11-07T10:40:01-0500","start":"2006-07-01 00:00:00","end":"2007-01-29 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/d0/51cb5356c2063","extension":"jpg"},"creators":{"available":136,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4627","name":"Roberto Aguirre-Sacasa","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian Michael Bendis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/367","name":"Ed Brubaker","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/887","name":"Ronald Byrd","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/598","name":"Brad Anderson","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/520","name":"Rainier Beredo","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11543","name":"Dan Brown","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1045","name":"Ramon Bachs","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/970","name":"Dennis Calero","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1141","name":"Giuseppe Camuncoli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano Caselli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/808","name":"Howard Chaykin","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/174","name":"Sean Chen","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim Calafiore","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/666","name":"Roberto Campus","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim Cheung","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/185","name":"Frank Cho","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10053","name":"Michael Chatham","role":"other"}],"returned":20},"characters":{"available":69,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009740","name":"Arnim Zola"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009182","name":"Bishop"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009184","name":"Black Bolt"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009185","name":"Black Cat"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","name":"Black Panther"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009191","name":"Blade"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009212","name":"Bullseye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010676","name":"Colleen Wing"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009258","name":"Dagger"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009262","name":"Daredevil"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009277","name":"Domino"}],"returned":20},"stories":{"available":325,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/543","name":"Interior #543","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/956","name":"1 of ?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/957","name":"1 of ?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/958","name":"2 of ?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/959","name":"2 of ?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/960","name":"3 of ?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/961","name":"3 of ?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/962","name":"2 of 6 - Civil War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/963","name":"2 of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/964","name":"3 of 6 - Civil War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/965","name":"3 of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/966","name":"4 of 6 - Civil War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/967","name":"4 of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/968","name":"5 of 6 - Civil War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/969","name":"5 of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/971","name":"4 of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/972","name":"6 of 6 - Civil War (45th Anniversary)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/973","name":"6 of 6 - Civil War (45th Anniversary)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1183","name":"1 of 5 - Identity Thief","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1184","name":"1 of 5 - Identity Thief","type":"interiorStory"}],"returned":20},"comics":{"available":141,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3537","name":"Amazing Spider-Man (1999) #529"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3942","name":"Amazing Spider-Man (1999) #530"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4065","name":"Amazing Spider-Man (1999) #531"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4177","name":"Amazing Spider-Man (1999) #532"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4277","name":"Amazing Spider-Man (1999) #533"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4431","name":"Amazing Spider-Man (1999) #534"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4806","name":"Amazing Spider-Man (1999) #535"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5094","name":"Amazing Spider-Man (1999) #536"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5245","name":"Amazing Spider-Man (1999) #537"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5808","name":"Amazing Spider-Man (1999) #538"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4425","name":"Black Panther (2005) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5243","name":"Black Panther (2005) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5408","name":"Black Panther (2005) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5667","name":"Black Panther (2005) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5805","name":"Black Panther (2005) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6047","name":"Black Panther (2005) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13513","name":"Black Panther: Civil War (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5849","name":"Blade (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4450","name":"Cable & Deadpool (2004) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4803","name":"Cable & Deadpool (2004) #31"}],"returned":20},"series":{"available":62,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/784","name":"Black Panther (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2226","name":"Black Panther: Civil War (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1123","name":"Blade (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/693","name":"Cable & Deadpool (2004 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/832","name":"Captain America (2004 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1067","name":"Civil War (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1893","name":"Civil War (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6208","name":"Civil War (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6248","name":"Civil War (DM Only) (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1101","name":"Civil War Files (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1900","name":"Civil War: Amazing Spider-Man (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1871","name":"Civil War: Battle Damage (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2256","name":"Civil War: Captain America (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2316","name":"Civil War: Choosing Sides (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1898","name":"Civil War: Fantastic Four (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10102","name":"Civil War: Fantastic Four (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1109","name":"Civil War: Front Line (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/11636","name":"Civil War: Front Line (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1964","name":"Civil War: Front Line Book 1 (2007)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/212","name":"Planet Hulk"}},{"id":239,"title":"Crossing","description":"Iron Man betrays the Avengers to Kang at the cost of several lives, ultimately including his own.","resourceURI":"http://gateway.marvel.com/v1/public/events/239","urls":[{"type":"detail","url":"http://marvel.com/comics/events/239/crossing?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Crossing?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-10-18T12:32:59-0400","start":"1995-09-10 00:00:00","end":"1996-02-10 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/60/51cb2d77a0410","extension":"jpg"},"creators":{"available":39,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3063","name":"Costanza","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2328","name":"N.j.q.","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice Chiang","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5365","name":"Phil Hugh Felix","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1967","name":"Brad K. Joyce","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2330","name":"Malibu","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1935","name":"Paul Becton","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1038","name":"John Kalisz","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2331","name":"Ramos","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1337","name":"Ed Benes","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2334","name":"F. Benes","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim Cheung","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike Deodato","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan Abnett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob Harras","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1316","name":"M.d. Bright","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim Calafiore","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2490","name":"Sergio Cariello","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2291","name":"Hector Collazo","role":"penciller"}],"returned":20},"characters":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009384","name":"Kang"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010367","name":"Masque"}],"returned":5},"stories":{"available":24,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15108","name":"Before... The Crossing","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15109","name":"Campfire Tales","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15110","name":"Cover #15110","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15111","name":"Shadows of the Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15112","name":"Cover #15112","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15113","name":"The Past Is With Us Always","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15114","name":"Avengers (1963) #393","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15115","name":"Dark Days Dawn","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15116","name":"Cover #15116","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15117","name":"Bad Blood","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15118","name":"The Death of an Avenger","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15119","name":"Time's End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19624","name":"[untitled]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19625","name":"Hollow Man","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19626","name":"[untitled]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19627","name":"Psi-Fi","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19628","name":"Terror from Behind the Door","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19629","name":"The Darkest Page to Turn","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19630","name":"Hawkeye's Revenge","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19631","name":"Innocent Eyes","type":"interiorStory"}],"returned":20},"comics":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7275","name":"Avengers (1963) #390"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7276","name":"Avengers (1963) #391"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7277","name":"Avengers (1963) #392"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7278","name":"Avengers (1963) #393"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7279","name":"Avengers (1963) #394"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7280","name":"Avengers (1963) #395"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9573","name":"Iron Man (1968) #320"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9574","name":"Iron Man (1968) #321"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9575","name":"Iron Man (1968) #322"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9576","name":"Iron Man (1968) #323"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9577","name":"Iron Man (1968) #324"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9578","name":"Iron Man (1968) #325"}],"returned":12},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron Man (1968 - 1996)"}],"returned":2},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age of Apocalypse"}},{"id":318,"title":"Dark Reign","description":"Norman Osborn came out the hero of Secret Invasion, and now the former Green Goblin has been handed control of the Marvel Universe. With his Cabal and the Dark Avengers at his side, can anything stop this long time villain from reshaping the world in his own image? And what has become of the heroes?","resourceURI":"http://gateway.marvel.com/v1/public/events/318","urls":[{"type":"detail","url":"http://marvel.com/comics/events/318/dark_reign?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-11-20T12:51:39-0500","start":"2008-12-01 00:00:00","end":"2009-12-31 12:59:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/528cf4ac6c15f","extension":"jpg"},"creators":{"available":288,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8571","name":"Guru-eFX","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel Acuna","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman Andrasofszky","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris Bachalo","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11562","name":"Jean-Francois Beaulieu","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8764","name":"Jock","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/750","name":"David Aja","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/779","name":"Matt Banning","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11463","name":"Jason Aaron","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8658","name":"James Asmus","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/249","name":"Art Adams","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9378","name":"Rommel Alama","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1072","name":"Chad Anderson","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9046","name":"Mario Alberti","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellinton Alves","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9018","name":"Mahmud Asrar","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9344","name":"Robert Atkins","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4014","name":"Axel Alonso","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8000","name":"Alejandro Arbona","role":"editor"}],"returned":20},"characters":{"available":95,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009521","name":" Hank Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011198","name":"Agents of Atlas"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011227","name":"Amadeus Cho"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man (Eric O Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010784","name":"Ares"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009169","name":"Baron Strucker"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010829","name":"Bengal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","name":"Black Panther"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009212","name":"Bullseye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009258","name":"Dagger"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011001","name":"Daken"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011367","name":"Dark Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011387","name":"Dark X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009274","name":"Diamondback (Rachel Leighton)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor Doom"}],"returned":20},"stories":{"available":411,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49855","name":"Cover #49855","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49856","name":"Interior #49856","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50806","name":"New Avengers (2004) #48","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50807","name":"Interior #50807","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50822","name":"Cover #50822","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50823","name":"Interior #50823","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50869","name":"Avengers: The Initiative (2007) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50870","name":"Avengers: The Initiative (2007) #20 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50963","name":"Cover #50963","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50964","name":"Interior #50964","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51005","name":"1 of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51006","name":"1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51041","name":"1 of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51042","name":"1 of 6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51050","name":"1 of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51051","name":"1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51203","name":"New Avengers (2004) #49","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51204","name":"Interior #51204","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51205","name":"1 of 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51206","name":"1 of 4","type":"interiorStory"}],"returned":20},"comics":{"available":204,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23659","name":"Agents of Atlas (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23825","name":"Agents of Atlas (2009) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24015","name":"Agents of Atlas (2009) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24219","name":"Agents of Atlas (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24221","name":"Agents of Atlas (2009) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24360","name":"Agents of Atlas (2009) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24361","name":"Agents of Atlas (2009) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24053","name":"All-New Savage She-Hulk (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24252","name":"All-New Savage She-Hulk (2009) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26242","name":"All-New Savage She-Hulk (2009) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26243","name":"All-New Savage She-Hulk (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24135","name":"Amazing Spider-Man (1999) #595"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24403","name":"Amazing Spider-Man (1999) #596"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24404","name":"Amazing Spider-Man (1999) #597"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24405","name":"Amazing Spider-Man (1999) #598"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24406","name":"Amazing Spider-Man (1999) #599"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22912","name":"Avengers: The Initiative (2007) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23112","name":"Avengers: The Initiative (2007) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23608","name":"Avengers: The Initiative (2007) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23968","name":"Avengers: The Initiative (2007) #23"}],"returned":20},"series":{"available":48,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/6807","name":"Agents of Atlas (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7231","name":"All-New Savage She-Hulk (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: The Initiative (2007 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6804","name":"Black Panther (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6599","name":"Dark Avengers (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8798","name":"Dark Avengers/Uncanny X-Men: Exodus (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8799","name":"Dark Avengers/Uncanny X-Men: Utopia (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9002","name":"Dark Avengers: Ares (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6998","name":"Dark Reign: Elektra (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7000","name":"Dark Reign: Fantastic Four (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7208","name":"Dark Reign: Hawkeye (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7690","name":"Dark Reign: Lethal Legion (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8760","name":"Dark Reign: Made Men (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7691","name":"Dark Reign: Mister Negative (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6415","name":"Dark Reign: New Nation (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7239","name":"Dark Reign: The Cabal (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8350","name":"Dark Reign: The Goblin Legacy (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7462","name":"Dark Reign: The Hood (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8747","name":"Dark Reign: The List - Daredevil (2009)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/276","name":"War of Kings"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret Invasion"}},{"id":240,"title":"Days of Future Present","description":"An adult Franklin Richards travels back from the year 2017 to repair perceived \"inaccuracies\" in the timeline by altering reality. Richards' tampering of reality triggers a Sentinel program that awakens Ahab, the mutant hound-master, who attempts to apprehend the adult Richards in order to prevent any deviations from the timeline that spurs the Sentinel-ruled North America.","resourceURI":"http://gateway.marvel.com/v1/public/events/240","urls":[{"type":"detail","url":"http://marvel.com/comics/events/240/days_of_future_present?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Days_of_Future_Present?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-10-18T12:33:05-0400","start":"1990-01-01 00:00:00","end":"1990-01-23 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/00/51cb2ea890038","extension":"jpg"},"creators":{"available":49,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/249","name":"Art Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John Byrne","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1279","name":"Jon Bogdanove","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2376","name":"James Brock","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/121","name":"Peter David","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob Harras","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3626","name":"Pat Brosseau","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3102","name":"Kevin Cunningham","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1892","name":"Michael Heisler","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2386","name":"Harry Candelario","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/379","name":"Greg Capullo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3456","name":"Gavin Curtis","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7231","name":"Michael Golden","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2697","name":"Butch Guice","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3104","name":"Mark Heike","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3457","name":"Jimmy Hoffa","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom DeFalco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2375","name":"Suzanne DellOrto","role":"colorist"}],"returned":20},"characters":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009309","name":"Forge"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009539","name":"Franklin Richards"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009356","name":"Human Torch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009366","name":"Invisible Woman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009408","name":"Longshot"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009459","name":"Mr. Fantastic"}],"returned":20},"stories":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15317","name":"Days of Future Present Part One of Four","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15318","name":"When Franklin Comes Marchin' Home","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15319","name":"Cast in Fire, Carved in Stone","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15320","name":"Beyond and Back","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19859","name":"Days of Future Present Part 4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19860","name":"You Must Remember This","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19861","name":"The Fundamental Thing","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19862","name":"X-Men Past and Present","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19863","name":"Alternate Cover to X-Men Annual #14","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21631","name":"Days of Future Present Part Three","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21632","name":"","type":"credits"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21633","name":"The Once and Future Mutant","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21634","name":"Tribute the Second","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21635","name":"A Glimpse Into the Future!","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21636","name":"Cable","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51878","name":"Days of Future Present Part Two","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51879","name":"Days of Future Present Part 2 [Actually Part 3]: Act of Faith","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51880","name":"Tribute the First","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51881","name":"Mighty Marvel Masterwork","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51882","name":"Prisoner of Love","type":"promo"}],"returned":20},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8702","name":"Fantastic Four Annual (1963) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10340","name":"New Mutants Annual (1984) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23513","name":"X-Factor Annual (1986) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12360","name":"X-Men Annual (1970) #14"}],"returned":4},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2053","name":"New Mutants Annual (1984 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor Annual (1986 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men Annual (1970 - 1991)"}],"returned":4},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction Agenda"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts of Vengeance!"}},{"id":245,"title":"Enemy of the State","description":"HYDRA, the Hand and a mutant group known as the Dawn of the White Light formed an alliance the purpose of which was to kill and resurrect superheroes under their control, starting with Wolverine. The alliance used Wolverine for various missions until he was recovered by S.H.I.E.L.D. and deprogrammed. Wolverine vowed to dismantle HYDRA and the Hand for what they did to him and for what they made him do.","resourceURI":"http://gateway.marvel.com/v1/public/events/245","urls":[{"type":"detail","url":"http://marvel.com/comics/events/245/enemy_of_the_state?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Enemy_of_the_State?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-28T17:36:21-0400","start":"2004-10-06 00:00:00","end":"2005-02-11 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/10/51ca1befe36df","extension":"jpg"},"creators":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/events/245/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/762","name":"Gary Erskine","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/570","name":"Klaus Janson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8635","name":"Randy Gentile","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/361","name":"Cory Petit","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8429","name":"Dave Sharpe","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/410","name":"Rus Wooton","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom Grummett","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/425","name":"Greg Land","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3635","name":"Joe Quesada","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/214","name":"John Romita JR.","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8178","name":"C.P. Smith","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/782","name":"Allan Jacobsen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/88","name":"Mark Millar","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian Nacieza","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/479","name":"Paul Mounts","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/500","name":"Chris Sotomayor","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/680","name":"Chris Walker","role":"colorist"}],"returned":18},"characters":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/events/245/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009288","name":"Elektra"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009324","name":"Gorgon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009508","name":"Kitty Pryde"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009430","name":"Rachel Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009641","name":"Swordsman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":13},"stories":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/events/245/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2153","name":"3 of 6 - Enemy of the State","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2154","name":"3 of 6 - Enemy of the State","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2182","name":"\"ENEMY OF THE STATE\" PART 1 (OF 6) The world’s deadliest living weapon just fell into the wrong hands. It’s Wolverine vs. the Ma","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2183","name":"\"ENEMY OF THE STATE\" PART 1 (OF 6) The world’s deadliest living weapon just fell into the wrong hands. It’s Wolverine vs. the Ma","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2184","name":"\"ENEMY OF THE STATE\" PART 2 (OF 6) The world’s deadliest living weapon just fell into the wrong hands. It’s Wolverine vs. the Ma","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2185","name":"\"ENEMY OF THE STATE\" PART 2 (OF 6) The world’s deadliest living weapon just fell into the wrong hands. It’s Wolverine vs. the Ma","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2186","name":"4 of 6 - Enemy of the State","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2187","name":"4 of 6 - Enemy of the State","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2188","name":"5 of 6 - Enemy of the State","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2189","name":"5 of 6 - Enemy of the State","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2190","name":"6 of 6 - Enemy of the State","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2191","name":"6 of 6 - Enemy of the State","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2192","name":"1 of 6 - Agent of S.H.I.E.L.D.","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2193","name":"1 of 6 - Agent of S.H.I.E.L.D.","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2196","name":"2 of 6 - Agent of S.H.I.E.L.D.","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2197","name":"2 of 6 - Agent of S.H.I.E.L.D.","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2198","name":"3 of 6 - Agent of S.H.I.E.L.D.","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2199","name":"3 of 6 - Agent of S.H.I.E.L.D.","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2200","name":"4 of 6 - Agent of S.H.I.E.L.D.","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2201","name":"4 of 6 - Agent of S.H.I.E.L.D.","type":"interiorStory"}],"returned":20},"comics":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/245/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1528","name":"New Invaders (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1556","name":"New Thunderbolts (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/860","name":"Wolverine (2003) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/897","name":"Wolverine (2003) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16","name":"Wolverine (2003) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1419","name":"Wolverine (2003) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1517","name":"Wolverine (2003) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1617","name":"Wolverine (2003) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1712","name":"Wolverine (2003) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1822","name":"Wolverine (2003) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1963","name":"Wolverine (2003) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2066","name":"Wolverine (2003) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2173","name":"Wolverine (2003) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2297","name":"Wolverine (2003) #31"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21455","name":"Wolverine: Enemy of the State Ultimate Collection (Trade Paperback)"}],"returned":15},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/events/245/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/729","name":"New Invaders (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/788","name":"New Thunderbolts (2004 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/632","name":"Wolverine (2003 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5099","name":"Wolverine: Enemy of the State Ultimate Collection (2008)"}],"returned":4},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House of M"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers Disassembled"}},{"id":246,"title":"Evolutionary War","description":"The High Evolutionary intends to help humanity reach the next stage of its evolution, regardless of the consequences, and embarks on a series of plans to attain his goal.","resourceURI":"http://gateway.marvel.com/v1/public/events/246","urls":[{"type":"detail","url":"http://marvel.com/comics/events/246/evolutionary_war?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Evolutionary_War?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-26T14:14:50-0400","start":"1988-01-01 00:00:00","end":"1988-10-10 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/00/51cb2f6c91c24","extension":"jpg"},"creators":{"available":82,"collectionURI":"http://gateway.marvel.com/v1/public/events/246/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1186","name":"Jack Abel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1836","name":"Terry Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1172","name":"Tony Dezuniga","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/249","name":"Art Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1298","name":"June Brigman","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/105","name":"Sal Buscema","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4239","name":"Jose Albelo","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2047","name":"Craig Anderson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom DeFalco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7804","name":"Tom Artis","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John Byrne","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8018","name":"Amanda Conner","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6082","name":"Paris Cullins","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3456","name":"Gavin Curtis","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/32","name":"Steve Ditko","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark Bright","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/180","name":"Kieron Dwyer","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/104","name":"Steve Englehart","role":"writer"}],"returned":20},"characters":{"available":48,"collectionURI":"http://gateway.marvel.com/v1/public/events/246/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009164","name":"Avalanche"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009216","name":"Caliban"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009255","name":"Crystal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009265","name":"Dark Phoenix"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010868","name":"Firebird"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009309","name":"Forge"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009539","name":"Franklin Richards"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009315","name":"Gateway"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"}],"returned":20},"stories":{"available":58,"collectionURI":"http://gateway.marvel.com/v1/public/events/246/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15307","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15308","name":"Crystal Blue Persuasion","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15309","name":"[Reunion With Quicksilver]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15310","name":"Silver and Crimson: Chapter 5","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17125","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17126","name":"Menace of the Living Universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17390","name":"Avengers Annual (1967) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17391","name":"Prometheus Mutans","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17392","name":"Beyond Life","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19851","name":"The Evolutionary War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19852","name":"Resurrection","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19853","name":"I Want My X-Men!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19854","name":"Demon Night","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21618","name":"Cover #21618","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21619","name":"Mind Games","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21620","name":"If Wishes Were Horses","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21621","name":"Blood Drawn, Blood Spilt.","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/35423","name":"Amazing Spider-Man Annual (1963) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/35424","name":"Enter: Speedball! The Masked Marvel","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/35425","name":"Pin-Up","type":"pinup"}],"returned":20},"comics":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/events/246/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16897","name":"Amazing Spider-Man Annual (1964) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6931","name":"Avengers Annual (1967) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17842","name":"Avengers West Coast Annual (1989) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8700","name":"Fantastic Four Annual (1963) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10338","name":"New Mutants Annual (1984) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11735","name":"Thor (1966) #407"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17940","name":"West Coast Avengers Annual (1986) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18294","name":"What If? (1989) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23511","name":"X-Factor Annual (1986) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12358","name":"X-Men Annual (1970) #12"}],"returned":10},"series":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/events/246/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing Spider-Man Annual (1964 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3624","name":"Avengers West Coast Annual (1989 - 1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2053","name":"New Mutants Annual (1984 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2083","name":"Thor (1966 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3632","name":"West Coast Avengers Annual (1986 - 1988)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor Annual (1986 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men Annual (1970 - 1991)"}],"returned":10},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall of the Mutants"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/231","name":"Armor Wars"}},{"id":297,"title":"Fall of the Hulks","description":"The Leader, M.O.D.O.K. and their allies in the Intelligencia launch their ultimate plan to defeats the Hulks! Unfortunately the good guys, Bruce Banner's a powerless, Skaar's a wild card and Red Hulk can't be trusted.","resourceURI":"http://gateway.marvel.com/v1/public/events/297","urls":[{"type":"detail","url":"http://marvel.com/comics/events/297/fall_of_the_hulks?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-10-18T12:33:23-0400","start":"2009-12-03 00:00:00","end":"2010-04-20 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/80/51ca19c3009a3","extension":"jpg"},"creators":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/events/297/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4992","name":"Simon Bowland","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8687","name":"Jason Henderson","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8571","name":"Guru-eFX","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike Deodato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2306","name":"Yancey Labat","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11457","name":"Fernando Blanco","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10288","name":"Marko Djurdjevic","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9394","name":"Salvador Espin","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/649","name":"Ed McGuinness","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1275","name":"Kevin Nowlan","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/969","name":"Mitch Breitweiser","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11559","name":"Jeff Scott Campbell","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/120","name":"Ron Garney","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1914","name":"Dan Panosian","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/440","name":"Mark Farmer","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/570","name":"Klaus Janson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/18","name":"Jeph Loeb","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/536","name":"Greg Pak","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/824","name":"Jeff Parker","role":"writer"}],"returned":20},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/events/297/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010726","name":"M.O.D.O.K."},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011360","name":"Red Hulk"}],"returned":3},"stories":{"available":48,"collectionURI":"http://gateway.marvel.com/v1/public/events/297/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55980","name":"Hulk (2008) #19","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55981","name":"Interior #55981","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55982","name":"Hulk (2008) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55983","name":"Interior #55983","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60571","name":"Cover #60571","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60572","name":"Interior #60572","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60573","name":"Incredible Hulks (2009) #607","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60574","name":"Interior #60574","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60575","name":"Incredible Hulks (2009) #608","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60576","name":"Interior #60576","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/62913","name":"Fall of the Hulks: Gamma (2010) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/62914","name":"Interior #62914","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/63511","name":"Cover #63511","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/63512","name":"Interior #63512","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/63753","name":"Cover #63753","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/63754","name":"Interior #63754","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64760","name":"Fall of the Hulks: The Savage She-Hulks (2010) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64761","name":"Interior #64761","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64763","name":"Interior #64763","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64765","name":"Interior #64765","type":"interiorStory"}],"returned":20},"comics":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/events/297/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29293","name":"Fall of the Hulks Alpha (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28859","name":"Fall of the Hulks Gamma (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/32756","name":"Fall of the Hulks: M.O.D.O.K. (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29889","name":"Fall of the Hulks: Red Hulk (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31500","name":"Fall of the Hulks: Red Hulk (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29891","name":"Fall of the Hulks: Red Hulk (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29892","name":"Fall of the Hulks: Red Hulk (2010) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29807","name":"Fall of the Hulks: The Savage She-Hulks (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29808","name":"Fall of the Hulks: The Savage She-Hulks (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29809","name":"Fall of the Hulks: The Savage She-Hulks (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25371","name":"Hulk (2008) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25372","name":"Hulk (2008) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30416","name":"Hulk (2008) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31892","name":"Hulk: Fall of the Hulks (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30863","name":"Hulk: Fall of the Hulks - Red Hulk (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30005","name":"Hulk: Fall of the Hulks Prelude (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30865","name":"Hulk: Fall of the Hulks: The Savage She-Hulks (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29160","name":"Incredible Hulk: Fall of the Hulks (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27651","name":"Incredible Hulks (2009) #606"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27652","name":"Incredible Hulks (2009) #607"}],"returned":20},"series":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/events/297/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9136","name":"Fall of the Hulks Alpha (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9069","name":"Fall of the Hulks Gamma (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9693","name":"Fall of the Hulks: M.O.D.O.K. (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9187","name":"Fall of the Hulks: Red Hulk (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9306","name":"Fall of the Hulks: The Savage She-Hulks (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9464","name":"Hulk: Fall of the Hulks (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9274","name":"Hulk: Fall of the Hulks - Red Hulk (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9206","name":"Hulk: Fall of the Hulks Prelude (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9448","name":"Hulk: Fall of the Hulks: The Savage She-Hulks (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9472","name":"Incredible Hulk: Fall of the Hulks (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8842","name":"Incredible Hulks (2009 - 2011)"}],"returned":12},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah War"}},{"id":248,"title":"Fall of the Mutants","description":"The X-Men battled the Adversary in Dallas, and X-Factor clashed with the Horsemen of Apocalypse in New York, while the New Mutants confronted the insane Ani-Mator on Paradise Island.","resourceURI":"http://gateway.marvel.com/v1/public/events/248","urls":[{"type":"detail","url":"http://marvel.com/comics/events/248/fall_of_the_mutants?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"},{"type":"wiki","url":"http://marvel.com/universe/Fall_of_the_Mutants?utm_campaign=apiRef&utm_source=0389d5da6552ee0c06eb64d5856e1b40"}],"modified":"2013-06-26T14:14:30-0400","start":"1988-01-10 00:00:00","end":"2007-01-17 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/51cb2f521ae35","extension":"jpg"},"creators":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/events/248/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/249","name":"Art Adams","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1277","name":"Bret Blevins","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1279","name":"Jon Bogdanove","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1298","name":"June Brigman","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/105","name":"Sal Buscema","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/180","name":"Kieron Dwyer","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5909","name":"Kerry Gammil","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1301","name":"Tom Grindberg","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1836","name":"Terry Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1172","name":"Tony Dezuniga","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5075","name":"Bobbie Chase","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/121","name":"Peter David","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom DeFalco","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1297","name":"Jo Duffy","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/104","name":"Steve Englehart","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/259","name":"Mark Gruenwald","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5764","name":"Ron Frenz","role":"penciller (cover)"}],"returned":20},"characters":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/events/248/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009164","name":"Avalanche"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","name":"Black Panther"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009216","name":"Caliban"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","name":"Captain Marvel (Carol Danvers)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009255","name":"Crystal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009262","name":"Daredevil"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009298","name":"Famine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"}],"returned":20},"stories":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/events/248/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7280","name":"Uncanny X-Men 214-228; Annual 10-11; Fantastic Four vs. the X-Men 1-4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7281","name":"Uncanny X-Men 214-228; Annual 10-11; Fantastic Four vs. the X-Men 1-4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7344","name":"Essential X-Factor Vol. 2 (2007) ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7345","name":"X-Factor 17-35; Annual 2; Thor 378","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12911","name":"Cover #12911","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12912","name":"The Turning Point!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16061","name":"Fall of the Mutants Tie-In","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16062","name":"Ground Zero","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17943","name":"Cover #17943","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17944","name":"America the Scorched","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18829","name":"Cover #18829","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18830","name":"Vicious Circle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21497","name":"Cover #21497","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21498","name":"Fang and Claw!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21501","name":"Cover #21501","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21502","name":"Suspended Ani-Mation!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21503","name":"Cover #21503","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21504","name":"Our Way!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22222","name":"Fall of the Mutants","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22223","name":"Masks","type":"interiorStory"}],"returned":20},"comics":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/248/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7720","name":"Captain America (1968) #339"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8243","name":"Daredevil (1963) #252"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5786","name":"Essential X-Factor Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4091","name":"Essential X-Men Vol. 7 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13131","name":"Fantastic Four (1961) #312"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9151","name":"Incredible Hulk (1962) #340"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10398","name":"New Mutants (1983) #59"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10400","name":"New Mutants (1983) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10401","name":"New Mutants (1983) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13766","name":"Uncanny X-Men (1963) #225"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13767","name":"Uncanny X-Men (1963) #226"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13768","name":"Uncanny X-Men (1963) #227"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12240","name":"X-Factor (1986) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12241","name":"X-Factor (1986) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12242","name":"X-Factor (1986) #26"}],"returned":15},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/events/248/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1722","name":"Essential X-Factor Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1688","name":"Essential X-Men Vol. 7 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2055","name":"New Mutants (1983 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor (1986 - 1998)"}],"returned":9},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary War"}}]}}