diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..c2e11b9 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,17 @@ +name: release-please +on: + push: + branches: + - main +permissions: + contents: write + pull-requests: write +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: ruby + package-name: harkness + token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..5076f47 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,32 @@ +name: test +on: + push: + branches: + - main + pull_request: +jobs: + test: + runs-on: ubuntu-latest + name: Ruby ${{ matrix.ruby }} + strategy: + matrix: + ruby: + - "2.6" + - "2.7" + - "3.0" + - "3.1" + - "3.2" + steps: + - uses: actions/checkout@v3 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + - name: Run the default task + run: bundle exec rake + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + if: matrix.ruby == 3.2 + with: + token: "${{ secrets.CODECOV_TOKEN }}" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2024d64 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig +# Created by https://www.toptal.com/developers/gitignore/api/ruby +# Edit at https://www.toptal.com/developers/gitignore?templates=ruby + +### Ruby ### +*.gem +*.rbc +/.config +/coverage/ +/InstalledFiles +/pkg/ +/spec/reports/ +/spec/examples.txt +/test/tmp/ +/test/version_tmp/ +/tmp/ + +# Used by dotenv library to load environment variables. +# .env + +# Ignore Byebug command history file. +.byebug_history + +## Specific to RubyMotion: +.dat* +.repl_history +build/ +*.bridgesupport +build-iPhoneOS/ +build-iPhoneSimulator/ + +## Specific to RubyMotion (use of CocoaPods): +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# vendor/Pods/ + +## Documentation cache and generated files: +/.yardoc/ +/_yardoc/ +/doc/ +/rdoc/ + +## Environment normalization: +/.bundle/ +/vendor/bundle +/lib/bundler/man/ + +# for a library or gem, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +Gemfile.lock +.ruby-version +.ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc + +# Used by RuboCop. Remote config files pulled in from inherit_from directive. +# .rubocop-https?--* + +# End of https://www.toptal.com/developers/gitignore/api/ruby + +# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option) +.rspec_status diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..3187716 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,94 @@ +AllCops: + TargetRubyVersion: 2.6 + NewCops: disable + +require: + - rubocop-rspec + - rubocop-rake + +Layout/LineLength: + Max: 120 +Metrics/MethodLength: + Max: 20 + +Metrics/ClassLength: + Max: 1500 + +Layout/SpaceAroundEqualsInParameterDefault: + EnforcedStyle: no_space + +Style/StringLiterals: + EnforcedStyle: double_quotes + +Style/SymbolArray: + Enabled: true + +Style/HashSyntax: + EnforcedStyle: ruby19_no_mixed_keys + +Style/PreferredHashMethods: + Enabled: false + +Style/FormatString: + EnforcedStyle: percent + +Style/CollectionMethods: + Enabled: true + PreferredMethods: + reduce: "inject" + +Style/ParenthesesAroundCondition: + AllowSafeAssignment: false +Lint/AssignmentInCondition: + AllowSafeAssignment: false + +Style/RaiseArgs: + Enabled: false + +Layout/MultilineOperationIndentation: + Enabled: false + +Style/SignalException: + EnforcedStyle: only_raise + +Lint/SuppressedException: + Enabled: false + +Layout/SpaceInsideHashLiteralBraces: + EnforcedStyle: no_space + +Style/BlockDelimiters: + Enabled: false + +Style/MethodCalledOnDoEndBlock: + Enabled: true + +Style/SingleLineBlockParams: + Enabled: false + +Lint/ShadowingOuterLocalVariable: + Enabled: false + +Style/Documentation: + Enabled: false + +Naming/BinaryOperatorParameterName: + Enabled: false + +Lint/Debugger: + Enabled: false + +Style/MethodDefParentheses: + Enabled: false + +RSpec/DescribedClass: + Enabled: false + +RSpec/ExampleLength: + Enabled: false + +RSpec/MultipleExpectations: + Enabled: false + +RSpec/FilePath: + Enabled: false diff --git a/.yardopts b/.yardopts new file mode 100644 index 0000000..cc365c8 --- /dev/null +++ b/.yardopts @@ -0,0 +1 @@ +--markup=markdown diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f4c0d16 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## [1.0.0] (2023-03-12) + +- Initial release diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..c08732a --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,84 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at 3457341+duffn@users.noreply.github.com. All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of actions. + +**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, +available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD new file mode 100644 index 0000000..a9d6ddd --- /dev/null +++ b/CONTRIBUTING.MD @@ -0,0 +1,91 @@ +# Contributing + +## Fork the Project + +Fork the [project on GitHub](https://github.com/duffn/harkness) and check out your copy. + +``` +git clone https://github.com/contributor/harkness.git +cd harkness +git remote add upstream https://github.com/duffn/harkness.git +``` + +## Create a topic branch + +Make sure your fork is up-to-date and create a topic branch for your feature or bug fix. + +``` +git checkout main +git pull upstream main +git checkout -b my-feature-branch +``` + +## Run the project locally + +After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. + +To install this gem onto your local machine, run `bundle exec rake install`. + +## Write tests + +Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build and add them to the [spec](spec) directory. + +I appreciate pull requests that highlight or reproduce a problem, even without a fix! + +## Write Code + +Implement your feature or bug fix. + +Ruby style is enforced with [Rubocop](https://github.com/rubocop/rubocop). Run `bundle exec rake rubocop` and fix any style issues highlighted. + +Make sure that `bundle exec rake spec` completes without errors. + +## Commit Changes + +This repository uses [`release-please`](https://github.com/googleapis/release-please) for changelog and release generation. Your commits to your PRs should follow [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/). + +Writing good commit messages is important. A commit message should describe what changed and why and follow the above conventional commits format. + +``` +git add . +git commit -m "feat: my awesome and useful commit message" +``` + +## Push + +``` +git push origin my-feature-branch +``` + +## Make a Pull Request + +Go to https://github.com/contributor/harkness.git and select your feature branch. Click the `Pull Request` button and fill out the form. Pull requests are usually reviewed within a few days. + +## Rebase + +If you've been working on a change for a while, rebase with `upstream/main`. + +``` +git fetch upstream +git rebase upstream/main +git push origin my-feature-branch -f +``` + +Amend your previous commit and force push the changes. + +``` +git commit --amend +git push origin my-feature-branch -f +``` + +## Check on Your Pull Request + +Go back to your pull request after a minute or two and see whether it passed GitHub Actions CI. Everything should look green, otherwise fix issues and amend your commit as described above. + +## Be Patient + +It's likely that your change will not be merged and that the nitpicky maintainer will ask you to do more, or fix seemingly benign problems. Hang in there! + +## Thank You + +Please do know that I really appreciate and value your time and work. diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0ca3e7d --- /dev/null +++ b/Gemfile @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +gemspec + +gem "rake", "~> 13.0" diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..44f139c --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2023 duffn + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..80d2968 --- /dev/null +++ b/README.md @@ -0,0 +1,155 @@ +# Harkness + +A full-featured and painstakingly documented library for working (playing) with the [Marvel API](https://developer.marvel.com/docs). + +![main](https://github.com/duffn/harkness/actions/workflows/test.yml/badge.svg) [![codecov](https://codecov.io/gh/duffn/harkness/branch/main/graph/badge.svg?token=9XUA33QIM2)](https://codecov.io/gh/duffn/harkness) + +## Installation + +Install the gem and add to the application's Gemfile by executing: + +``` +bundle add harkness +``` + +If bundler is not being used to manage dependencies, install the gem by executing: + +``` +gem install harkness +``` + +## Usage + +- Get your Marvel API public key and private key on your [Marvel developer account](https://developer.marvel.com/account). + +- Set your public key and private key as environment variables using your preferred method. + +```bash +export MARVEL_PUBLIC_KEY=my_public_key +export MARVEL_PRIVATE_KEY=my_private_key +``` + +- Create a Harkness client. + +```ruby +require "harkness" + +client = Harkness::Client.new(public_key: ENV["MARVEL_PUBLIC_KEY"], private_key: ENV["MARVEL_PRIVATE_KEY"]) +``` + +- Use the client to access API resources. + + - Use `list` on any resource to get all, paginated, items for that resource. + + - Pass any [valid parameters](https://developer.marvel.com/docs) to the `list` method. + + ```ruby + client.characters.list(nameStartsWith: "Ant-", limit: 10, orderBy: "-modified") + ``` + + - Use `retrieve` to get a single resource by ID. + - Get related resources, too! + - Ex. `client.comics.characters(comic_id: 1234)` will get all characters for the comic with ID `1234`. + +- All resources are classes in the `Harkness` module and attributes can be easily accessed just as you would access them normally. + +``` +irb(main):001:0> client = Harkness::Client.new(public_key: ENV["MARVEL_PUBLIC_KEY"], private_key: ENV["MARVEL_PRIVATE_KEY"]) +=> +# character = client.characters.list(nameStartsWith: "Ant-", limit: 1, orderBy: "modified") +=> +# character.data.results[0].name +=> "Ant-Man (Eric O'Grady)" +``` + +### Resources + +#### Characters + +```ruby +client.characters.list +client.characters.retrieve(character_id: 1234) +client.characters.comics(character_id: 1234) +client.characters.events(character_id: 1234) +client.characters.series(character_id: 1234) +client.characters.stories(character_id: 1234) +``` + +#### Comics + +```ruby +client.comics.list +client.comics.retrieve(comic_id: 1234) +client.comics.characters(comic_id: 1234) +client.comics.creators(comic_id: 1234) +client.comics.events(comic_id: 1234) +client.comics.stories(comic_id: 1234) +``` + +#### Creators + +```ruby +client.creators.list +client.creators.retrieve(comic_id: 1234) +client.creators.comics(creator_id: 1234) +client.creators.events(creator_id: 1234) +client.creators.series(creator_id: 1234) +client.creators.stories(creator_id: 1234) +``` + +#### Events + +```ruby +client.events.list +client.events.retrieve(event_id: 1234) +client.events.comics(event_id: 1234) +client.events.series(event_id: 1234) +client.events.creators(event_id: 1234) +client.events.characters(event_id: 1234) +client.events.stories(event_id: 1234) +``` + +#### Series + +```ruby +client.series.list +client.series.retrieve(series_id: 1234) +client.series.comics(series_id: 1234) +client.series.events(series_id: 1234) +client.series.creators(series_id: 1234) +client.series.characters(series_id: 1234) +client.series.stories(series_id: 1234) +``` + +#### Stories + +```ruby +client.stories.list +client.stories.retrieve(story_id: 1234) +client.stories.comics(story_id: 1234) +client.stories.events(story_id: 1234) +client.stories.creators(story_id: 1234) +client.stories.characters(story_id: 1234) +client.stories.series(story_id: 1234) +``` + +## Docs + +- Browse the painstakingly documented [RubyDoc](https://rubydoc.info/gems/harkness). +- View the interactive [API tester at Marvel](https://developer.marvel.com/docs). + +## Contributing + +See [contributing](CONTRIBUTING.md). + +## License + +The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). + +## Code of Conduct + +Everyone interacting with the Harkness project is expected to follow the [code of conduct](https://github.com/duffn/harkness/blob/main/CODE_OF_CONDUCT.md). diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..cca7175 --- /dev/null +++ b/Rakefile @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require "bundler/gem_tasks" +require "rspec/core/rake_task" + +RSpec::Core::RakeTask.new(:spec) + +require "rubocop/rake_task" + +RuboCop::RakeTask.new + +task default: %i[spec rubocop] diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..a70490f --- /dev/null +++ b/bin/console @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require "bundler/setup" +require "harkness" + +# You can add fixtures and/or initialization code here to make experimenting +# with your gem easier. You can also use a different console, if you like. + +# (If you use this, don't forget to add pry to your Gemfile!) +# require "pry" +# Pry.start + +require "irb" +IRB.start(__FILE__) diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..dce67d8 --- /dev/null +++ b/bin/setup @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' +set -vx + +bundle install + +# Do any other automated setup that you need to do here diff --git a/harkness.gemspec b/harkness.gemspec new file mode 100644 index 0000000..db6b7b5 --- /dev/null +++ b/harkness.gemspec @@ -0,0 +1,42 @@ +# frozen_string_literal: true + +require_relative "lib/harkness/version" + +Gem::Specification.new do |spec| + spec.name = "harkness" + spec.version = Harkness::VERSION + spec.authors = ["duffn"] + + spec.summary = "A library for working (playing) with the Marvel API." + spec.description = "Dive into the Marvel universe with this comprehensive Ruby library for the Marvel API at https://developer.marvel.com." + spec.homepage = "https://github.com/duffn/harkness" + spec.license = "MIT" + spec.required_ruby_version = ">= 2.6.0" + + spec.metadata["allowed_push_host"] = "https://rubygems.org" + + spec.metadata["homepage_uri"] = spec.homepage + spec.metadata["source_code_uri"] = "https://github.com/duffn/harkness" + spec.metadata["changelog_uri"] = "https://github.com/duffn/harkness/blob/main/CHANGELOG.md" + + spec.files = Dir.chdir(__dir__) do + `git ls-files -z`.split("\x0").reject do |f| + (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)}) + end + end + spec.require_paths = ["lib"] + + spec.add_dependency "faraday", "~> 2.7" + spec.add_dependency "shale", "~> 0.9.0" + + spec.add_development_dependency "redcarpet", "~> 3.6" + spec.add_development_dependency "rspec", "~> 3.12" + spec.add_development_dependency "rubocop-rake", "~> 0.6.0" + spec.add_development_dependency "rubocop-rspec", "~> 2.18" + spec.add_development_dependency "simplecov", "~> 0.22.0" + spec.add_development_dependency "simplecov-cobertura", "~> 2.1" + spec.add_development_dependency "timecop", "~> 0.9.6" + spec.add_development_dependency "vcr", "~> 6.1" + spec.add_development_dependency "webmock", "~> 3.18" + spec.add_development_dependency "yard", "~> 0.9.28" +end diff --git a/lib/harkness.rb b/lib/harkness.rb new file mode 100644 index 0000000..5163f2e --- /dev/null +++ b/lib/harkness.rb @@ -0,0 +1,42 @@ +# frozen_string_literal: true + +require "faraday" +require "shale" + +# Harkness +require "harkness/version" +require "harkness/client" +require "harkness/resource" +require "harkness/error" + +# Base objects +require "harkness/models/base/data_container" +require "harkness/models/base/data_wrapper" +require "harkness/models/base/summary" + +# Shared models +require "harkness/models/text_object" +require "harkness/models/image" +require "harkness/models/url" +require "harkness/models/comic_list" +require "harkness/models/creator_list" +require "harkness/models/character_list" +require "harkness/models/event_list" +require "harkness/models/story_list" +require "harkness/models/series_list" + +# Models +require "harkness/models/character" +require "harkness/models/comic" +require "harkness/models/creator" +require "harkness/models/event" +require "harkness/models/series" +require "harkness/models/story" + +# Resources +require "harkness/resources/character" +require "harkness/resources/comic" +require "harkness/resources/creator" +require "harkness/resources/event" +require "harkness/resources/series" +require "harkness/resources/story" diff --git a/lib/harkness/client.rb b/lib/harkness/client.rb new file mode 100644 index 0000000..ef4498c --- /dev/null +++ b/lib/harkness/client.rb @@ -0,0 +1,70 @@ +# frozen_string_literal: true + +module Harkness + class Client + # The base URL for the Marvel API. + BASE_URL = "https://gateway.marvel.com/v1/public" + + # The public key for the Marvel API. + # @return [String] the public key for the Marvel API. + attr_reader :public_key + # The private key for the Marvel API. + # @return [String] the private key for the Marvel API. + attr_reader :private_key + + # Initialize a client. + # @param public_key [String] the public key for the Marvel API. + # @param private_key [String] the private key for the Marvel API. + # @param logger [Boolean] enable Faraday request logging. + def initialize(public_key:, private_key:, logger: false) + @public_key = public_key + @private_key = private_key + @logger = logger + end + + # The character resource. + # @return [Harkness::CharacterResource] the character resource. + def characters + CharacterResource.new(self) + end + + # The comics resource. + # @return [Harkness::ComicResource] the comic resource. + def comics + ComicResource.new(self) + end + + # The creators resource. + # @return [Harkness::CreatorResource] the creator resource. + def creators + CreatorResource.new(self) + end + + # The events resource. + # @return [Harkness::EventResource] the event resource. + def events + EventResource.new(self) + end + + # The series resource. + # @return [Harkness::SeriesResource] the series resource. + def series + SeriesResource.new(self) + end + + # The stories resource. + # @return [Harkness::StoryResource] the story resource. + def stories + StoryResource.new(self) + end + + # The Faraday connection to use for API requests. + def connection + @connection ||= Faraday.new(BASE_URL) do |conn| + conn.request :json + + conn.response :logger if @logger + end + end + end +end diff --git a/lib/harkness/error.rb b/lib/harkness/error.rb new file mode 100644 index 0000000..ffa4355 --- /dev/null +++ b/lib/harkness/error.rb @@ -0,0 +1,63 @@ +# frozen_string_literal: true + +module Harkness + module Error + class Error < StandardError; end + + # Raised when the API endpoint returns the HTTP status code 400. + class BadRequest < Error; end + + # Raised when the API endpoint returns the HTTP status code 401. + class Unauthorized < Error; end + + # Raised when the API endpoint returns the HTTP status code 403. + class Forbidden < Error; end + + # Raised when the API endpoint returns the HTTP status code 404. + class NotFound < Error; end + + # Raised when the API endpoint returns the HTTP status code 405. + class MethodNotAllowed < Error; end + + # Raised when the API endpoint returns the HTTP status code 406. + class NotAcceptable < Error; end + + # Raised when the API endpoint returns the HTTP status code 409. + class Conflict < Error; end + + # Raised when the API endpoint returns the HTTP status code 422. + class Unprocessable < Error; end + + # Raised when the API endpoint returns the HTTP status code 429. + class TooManyRequests < Error; end + + # Raised when the API endpoint returns the HTTP status code 500. + class InternalServerError < Error; end + + # Raised when the API endpoint returns the HTTP status code 502. + class BadGateway < Error; end + + # Raised when the API endpoint returns the HTTP status code 503. + class ServiceUnavailable < Error; end + + # Raised when the API endpoint returns the HTTP status code 522. + class ConnectionTimedOut < Error; end + + # HTTP status codes mapped to error classes. + STATUS_MAPPINGS = { + 400 => BadRequest, + 401 => Unauthorized, + 403 => Forbidden, + 404 => NotFound, + 405 => MethodNotAllowed, + 406 => NotAcceptable, + 409 => Conflict, + 422 => Unprocessable, + 429 => TooManyRequests, + 500 => InternalServerError, + 502 => BadGateway, + 503 => ServiceUnavailable, + 522 => ConnectionTimedOut + }.freeze + end +end diff --git a/lib/harkness/models/base/data_container.rb b/lib/harkness/models/base/data_container.rb new file mode 100644 index 0000000..828b3d8 --- /dev/null +++ b/lib/harkness/models/base/data_container.rb @@ -0,0 +1,21 @@ +# frozen_string_literal: true + +module Harkness + module Base + # Container class that holds pagination information. + class DataContainer < Shale::Mapper + # @!attribute [r] offset + # @return [Integer] the requested offset (number of skipped results) of the call. + attribute :offset, Shale::Type::Integer + # @!attribute [r] limit + # @return [Integer] the requested result limit. + attribute :limit, Shale::Type::Integer + # @!attribute [r] total + # @return [Integer] the total number of resources available given the current filter set. + attribute :total, Shale::Type::Integer + # @!attribute [r] count + # @return [Integer] the total number of results returned by this call. + attribute :count, Shale::Type::Integer + end + end +end diff --git a/lib/harkness/models/base/data_wrapper.rb b/lib/harkness/models/base/data_wrapper.rb new file mode 100644 index 0000000..fc652ca --- /dev/null +++ b/lib/harkness/models/base/data_wrapper.rb @@ -0,0 +1,34 @@ +# frozen_string_literal: true + +module Harkness + module Base + # The top level wrapper of a response from the API. + class DataWrapper < Shale::Mapper + # @!attribute [r] code + # @return [Integer] the HTTP status code of the returned result. + attribute :code, Shale::Type::Integer + # @!attribute [r] status + # @return [String] a string description of the call status. + attribute :status, Shale::Type::String + # @!attribute [r] copyright + # @return [String] the copyright notice for the returned result. + attribute :copyright, Shale::Type::String + # @!attribute [r] attributionText + # @return [String] the attribution notice for this result. + # Please display either this notice or the contents of the attributionHTML field on all + # screens which contain data from the Marvel Comics API. + attribute :attributionText, Shale::Type::String + # @!attribute [r] attributionHTML + # @return [String] an HTML representation of the attribution notice for this result. + # Please display either this notice or the contents of the attributionText field on all + # screens which contain data from the Marvel Comics API. + attribute :attributionHTML, Shale::Type::String + # @!attribute [r] data + # @return [Harkness::Base::DataContainer] the results returned by the call. + attribute :data, Harkness::Base::DataContainer + # @!attribute [r] etag + # @return [String] a digest value of the content returned by the call. + attribute :etag, Shale::Type::String + end + end +end diff --git a/lib/harkness/models/base/summary.rb b/lib/harkness/models/base/summary.rb new file mode 100644 index 0000000..758de73 --- /dev/null +++ b/lib/harkness/models/base/summary.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +module Harkness + module Base + # Base class for the "summary" objects in an API response. These summary objects are + # linked objects to the main API response. For example, when retrieving a Character, + # one of the summary objects is a Series. + class Summary < Shale::Mapper + # @!attribute [r] resourceURI + # @return [String] the path to the individual resource. + attribute :resourceURI, Shale::Type::String + # @!attribute [r] name + # @return [String] the canonical name of the resource. + attribute :name, Shale::Type::String + end + end +end diff --git a/lib/harkness/models/character.rb b/lib/harkness/models/character.rb new file mode 100644 index 0000000..877765d --- /dev/null +++ b/lib/harkness/models/character.rb @@ -0,0 +1,54 @@ +# frozen_string_literal: true + +module Harkness + # An individual character. + class Character < Shale::Mapper + # @!attribute [r] id + # @return [Integer] the unique ID of the character resource. + attribute :id, Shale::Type::Integer + # @!attribute [r] name + # @return [String] the name of the character. + attribute :name, Shale::Type::String + # @!attribute [r] description + # @return [String] a short bio or description of the character + attribute :description, Shale::Type::String + # @!attribute [r] modified + # @return [String] the date the resource was most recently modified. + attribute :modified, Shale::Type::String + # @!attribute [r] resourceURI + # @return [String] the canonical URL identifier for this resource. + attribute :resourceURI, Shale::Type::String + # @!attribute [r] urls + # @return [Array] a set of public web site URLs for the resource. + attribute :urls, Harkness::URL, collection: true + # @!attribute [r] thumbnail + # @return [Harkness::Image] the representative image for this character. + attribute :thumbnail, Harkness::Image + # @!attribute [r] comics + # @return [Harkness::ComicList] a resource list containing comics which feature this character. + attribute :comics, Harkness::ComicList + # @!attribute [r] stories + # @return [Harkness::StoryList] a resource list of stories in which this character appears. + attribute :stories, Harkness::StoryList + # @!attribute [r] events + # @return [Harkness::EventList] a resource list of events in which this character appears. + attribute :events, Harkness::EventList + # @!attribute [r] series + # @return [Harkness::SeriesList] a resource list of series in which this character appears. + attribute :series, Harkness::SeriesList + end + + # Container class that holds pagination information and results + class CharacterDataContainer < Harkness::Base::DataContainer + # @!attribute [r] results + # @return [Array] the list of characters returned by the call. + attribute :results, Harkness::Character, collection: true + end + + # The top level wrapper of a response from the API. + class CharacterDataWrapper < Harkness::Base::DataWrapper + # @!attribute [r] data + # @return [CharacterDataContainer] the results returned by the call. + attribute :data, Harkness::CharacterDataContainer + end +end diff --git a/lib/harkness/models/character_list.rb b/lib/harkness/models/character_list.rb new file mode 100644 index 0000000..2b1c2d8 --- /dev/null +++ b/lib/harkness/models/character_list.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +module Harkness + # The summary of a character. + class CharacterSummary < Harkness::Base::Summary + # @!attribute [r] role + # @return [String] the role of the creator in the parent entity. + attribute :role, Shale::Type::String + end + + # A list of characters. + class CharacterList < Shale::Mapper + # @!attribute [r] available + # @return [Integer] the number of total available characters in this list. + # Will always be greater than or equal to the "returned" value. + attribute :available, Shale::Type::Integer + # @!attribute [r] returned + # @return [Integer] the number of characters returned in this collection (up to 20). + attribute :returned, Shale::Type::Integer + # @!attribute [r] collectionURI + # @return [String] the path to the full list of characters in this collection. + attribute :collectionURI, Shale::Type::String + # @!attribute [r] offset + # @return [Array] the list of returned characters in this collection. + attribute :items, Harkness::CharacterSummary, collection: true + end +end diff --git a/lib/harkness/models/comic.rb b/lib/harkness/models/comic.rb new file mode 100644 index 0000000..3f2ac6d --- /dev/null +++ b/lib/harkness/models/comic.rb @@ -0,0 +1,53 @@ +# frozen_string_literal: true + +module Harkness + class ComicDate < Shale::Mapper + attribute :type, Shale::Type::String + attribute :date, Shale::Type::String + end + + class ComicPrice < Shale::Mapper + attribute :type, Shale::Type::String + attribute :price, Shale::Type::Float + end + + class Comic < Shale::Mapper + attribute :id, Shale::Type::Integer + attribute :digitalId, Shale::Type::Integer + attribute :title, Shale::Type::String + attribute :issueNumber, Shale::Type::Integer + attribute :variantDescription, Shale::Type::String + attribute :description, Shale::Type::String + attribute :modified, Shale::Type::String + attribute :isbn, Shale::Type::String + attribute :upc, Shale::Type::String + attribute :diamondCode, Shale::Type::String + attribute :ean, Shale::Type::String + attribute :issn, Shale::Type::String + attribute :format, Shale::Type::String + attribute :pageCount, Shale::Type::Integer + attribute :textObjects, Harkness::TextObject, collection: true + attribute :resourceURI, Shale::Type::String + attribute :urls, Harkness::URL, collection: true + attribute :series, Harkness::SeriesSummary + attribute :variants, Harkness::ComicSummary, collection: true + attribute :collections, Harkness::ComicSummary, collection: true + attribute :collectedIssues, Harkness::ComicSummary, collection: true + attribute :dates, Harkness::ComicDate, collection: true + attribute :prices, Harkness::ComicPrice, collection: true + attribute :thumbnail, Harkness::Image + attribute :images, Harkness::Image, collection: true + attribute :creators, Harkness::CreatorList + attribute :characters, Harkness::CharacterList + attribute :stories, Harkness::StoryList + attribute :events, Harkness::EventList + end + + class ComicDataContainer < Harkness::Base::DataContainer + attribute :results, Harkness::Comic, collection: true + end + + class ComicDataWrapper < Harkness::Base::DataWrapper + attribute :data, Harkness::ComicDataContainer + end +end diff --git a/lib/harkness/models/comic_list.rb b/lib/harkness/models/comic_list.rb new file mode 100644 index 0000000..c83d260 --- /dev/null +++ b/lib/harkness/models/comic_list.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module Harkness + class ComicSummary < Harkness::Base::Summary + end + + class ComicList < Shale::Mapper + attribute :available, Shale::Type::Integer + attribute :collectionURI, Shale::Type::String + attribute :items, Harkness::ComicSummary, collection: true + end +end diff --git a/lib/harkness/models/creator.rb b/lib/harkness/models/creator.rb new file mode 100644 index 0000000..ab43fc2 --- /dev/null +++ b/lib/harkness/models/creator.rb @@ -0,0 +1,28 @@ +# frozen_string_literal: true + +module Harkness + class Creator < Shale::Mapper + attribute :id, Shale::Type::Integer + attribute :firstName, Shale::Type::String + attribute :middleName, Shale::Type::String + attribute :lastName, Shale::Type::String + attribute :suffix, Shale::Type::String + attribute :fullName, Shale::Type::String + attribute :modified, Shale::Type::String + attribute :resourceURI, Shale::Type::String + attribute :urls, Harkness::URL, collection: true + attribute :thumbnail, Harkness::Image + attribute :series, Harkness::SeriesList + attribute :stories, Harkness::StoryList + attribute :comics, Harkness::ComicList + attribute :events, Harkness::EventList + end + + class CreatorDataContainer < Harkness::Base::DataContainer + attribute :results, Harkness::Creator, collection: true + end + + class CreatorDataWrapper < Harkness::Base::DataWrapper + attribute :data, Harkness::CreatorDataContainer + end +end diff --git a/lib/harkness/models/creator_list.rb b/lib/harkness/models/creator_list.rb new file mode 100644 index 0000000..f1246d0 --- /dev/null +++ b/lib/harkness/models/creator_list.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +module Harkness + class CreatorSummary < Harkness::Base::Summary + attribute :role, Shale::Type::String + end + + class CreatorList < Shale::Mapper + attribute :available, Shale::Type::Integer + attribute :returned, Shale::Type::Integer + attribute :collectionURI, Shale::Type::String + attribute :items, Harkness::CreatorSummary, collection: true + end +end diff --git a/lib/harkness/models/event.rb b/lib/harkness/models/event.rb new file mode 100644 index 0000000..7ff7a24 --- /dev/null +++ b/lib/harkness/models/event.rb @@ -0,0 +1,30 @@ +# frozen_string_literal: true + +module Harkness + class Event < Shale::Mapper + attribute :id, Shale::Type::Integer + attribute :title, Shale::Type::String + attribute :description, Shale::Type::String + attribute :resourceURI, Shale::Type::String + attribute :urls, Harkness::URL, collection: true + attribute :modified, Shale::Type::String + attribute :start, Shale::Type::String + attribute :end, Shale::Type::String + attribute :thumbnail, Harkness::Image + attribute :comics, Harkness::ComicList + attribute :stories, Harkness::StoryList + attribute :series, Harkness::SeriesList + attribute :characters, Harkness::CharacterList + attribute :creators, Harkness::CreatorList + attribute :next, Harkness::EventSummary + attribute :previous, Harkness::EventSummary + end + + class EventDataContainer < Harkness::Base::DataContainer + attribute :results, Harkness::Event, collection: true + end + + class EventDataWrapper < Harkness::Base::DataWrapper + attribute :data, Harkness::EventDataContainer + end +end diff --git a/lib/harkness/models/event_list.rb b/lib/harkness/models/event_list.rb new file mode 100644 index 0000000..264031c --- /dev/null +++ b/lib/harkness/models/event_list.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module Harkness + class EventSummary < Harkness::Base::Summary + end + + class EventList < Shale::Mapper + attribute :available, Shale::Type::Integer + attribute :collectionURI, Shale::Type::String + attribute :items, Harkness::EventSummary, collection: true + end +end diff --git a/lib/harkness/models/image.rb b/lib/harkness/models/image.rb new file mode 100644 index 0000000..37a95a6 --- /dev/null +++ b/lib/harkness/models/image.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Harkness + # An image. + class Image < Shale::Mapper + attribute :path, Shale::Type::String + attribute :extension, Shale::Type::String + end +end diff --git a/lib/harkness/models/series.rb b/lib/harkness/models/series.rb new file mode 100644 index 0000000..3bfc6c7 --- /dev/null +++ b/lib/harkness/models/series.rb @@ -0,0 +1,32 @@ +# frozen_string_literal: true + +module Harkness + class Series < Shale::Mapper + attribute :id, Shale::Type::Integer + attribute :title, Shale::Type::String + attribute :description, Shale::Type::String + attribute :resourceURI, Shale::Type::String + attribute :urls, Harkness::URL, collection: true + + attribute :startYear, Shale::Type::Integer + attribute :endYear, Shale::Type::Integer + attribute :rating, Shale::Type::String + attribute :modified, Shale::Type::String + attribute :thumbnail, Harkness::Image + attribute :comics, Harkness::ComicList + attribute :stories, Harkness::StoryList + attribute :events, Harkness::EventList + attribute :characters, Harkness::CharacterList + attribute :creators, Harkness::CreatorList + attribute :next, Harkness::SeriesSummary + attribute :previous, Harkness::SeriesSummary + end + + class SeriesDataContainer < Harkness::Base::DataContainer + attribute :results, Harkness::Series, collection: true + end + + class SeriesDataWrapper < Harkness::Base::DataWrapper + attribute :data, Harkness::SeriesDataContainer + end +end diff --git a/lib/harkness/models/series_list.rb b/lib/harkness/models/series_list.rb new file mode 100644 index 0000000..1ba611b --- /dev/null +++ b/lib/harkness/models/series_list.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module Harkness + class SeriesSummary < Harkness::Base::Summary + end + + class SeriesList < Shale::Mapper + attribute :available, Shale::Type::Integer + attribute :collectionURI, Shale::Type::String + attribute :items, Harkness::SeriesSummary, collection: true + end +end diff --git a/lib/harkness/models/story.rb b/lib/harkness/models/story.rb new file mode 100644 index 0000000..926ff60 --- /dev/null +++ b/lib/harkness/models/story.rb @@ -0,0 +1,26 @@ +# frozen_string_literal: true + +module Harkness + class Story < Shale::Mapper + attribute :id, Shale::Type::Integer + attribute :title, Shale::Type::String + attribute :description, Shale::Type::String + attribute :resourceURI, Shale::Type::String + attribute :type, Shale::Type::String + attribute :modified, Shale::Type::String + attribute :thumbnail, Harkness::Image + attribute :comics, Harkness::ComicList + attribute :series, Harkness::SeriesList + attribute :events, Harkness::EventList + attribute :characters, Harkness::CharacterList + attribute :originalIssue, Harkness::ComicSummary + end + + class StoryDataContainer < Harkness::Base::DataContainer + attribute :results, Harkness::Story, collection: true + end + + class StoryDataWrapper < Harkness::Base::DataWrapper + attribute :data, Harkness::StoryDataContainer + end +end diff --git a/lib/harkness/models/story_list.rb b/lib/harkness/models/story_list.rb new file mode 100644 index 0000000..7049e75 --- /dev/null +++ b/lib/harkness/models/story_list.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +module Harkness + class StorySummary < Harkness::Base::Summary + attribute :type, Shale::Type::String + end + + class StoryList < Shale::Mapper + attribute :available, Shale::Type::Integer + attribute :collectionURI, Shale::Type::String + attribute :items, Harkness::StorySummary, collection: true + end +end diff --git a/lib/harkness/models/text_object.rb b/lib/harkness/models/text_object.rb new file mode 100644 index 0000000..996f33b --- /dev/null +++ b/lib/harkness/models/text_object.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +module Harkness + # A text objct + class TextObject < Shale::Mapper + attribute :type, Shale::Type::String + attribute :language, Shale::Type::String + attribute :text, Shale::Type::String + end +end diff --git a/lib/harkness/models/url.rb b/lib/harkness/models/url.rb new file mode 100644 index 0000000..6d745d6 --- /dev/null +++ b/lib/harkness/models/url.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Harkness + # A URL. + class URL < Shale::Mapper + attribute :type, Shale::Type::String + attribute :url, Shale::Type::String + end +end diff --git a/lib/harkness/resource.rb b/lib/harkness/resource.rb new file mode 100644 index 0000000..61cea6b --- /dev/null +++ b/lib/harkness/resource.rb @@ -0,0 +1,36 @@ +# frozen_string_literal: true + +require "digest/md5" + +module Harkness + class Resource + attr_reader :client + + def initialize(client) + @client = client + end + + private + + def get_request(url, params: {}, headers: {}) + handle_response client.connection.get(url, authentication_params.merge(params), headers) + end + + def authentication_params + timestamp = Time.now.to_i + { + ts: timestamp, + apikey: @client.public_key, + hash: Digest::MD5.hexdigest(timestamp.to_s + @client.private_key + @client.public_key) + } + end + + def handle_response(response) + error_klass = Harkness::Error::STATUS_MAPPINGS[response.status] + message = JSON.parse(response.body)["status"] || "API request failed with an unknown error." + raise error_klass, message if error_klass + + response + end + end +end diff --git a/lib/harkness/resources/character.rb b/lib/harkness/resources/character.rb new file mode 100644 index 0000000..f5bcd12 --- /dev/null +++ b/lib/harkness/resources/character.rb @@ -0,0 +1,63 @@ +# frozen_string_literal: true + +module Harkness + # The character resource. + class CharacterResource < Resource + # Get a list of characters. + # @param params [Hash] the params to pass to the API request. + # See the [characters documentation from Marvel](https://developer.marvel.com/docs#!/public/getCreatorCollection_get_0) + # for valid options. + # @return [Harkness::CharacterDataWrapper] the top level wrapper around the character API response. + # @example + # client.characters.list + # client.characters.list(nameStartsWith: "Ant-", limit: 10, orderBy: "-modified") + def list(**params) + CharacterDataWrapper.from_json(get_request("characters", params: params).body) + end + + # Get a single character. + # @param character_id [Integer] the ID of the character. + # @return [Harkness::CharacterDataWrapper] the top level wrapper around the character API response. + # @example + # client.characters.retrieve(character_id: 1234) + def retrieve(character_id:) + CharacterDataWrapper.from_json(get_request("characters/#{character_id}").body) + end + + # Get a list of comics for a particular character. + # @param character_id [Integer] the ID of the character. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.characters.comics(character_id: 1234) + def comics(character_id:) + ComicDataWrapper.from_json(get_request("characters/#{character_id}/comics").body) + end + + # Get a list of events for a particular character. + # @param character_id [Integer] the ID of the character. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.characters.events(character_id: 1234) + def events(character_id:) + EventDataWrapper.from_json(get_request("characters/#{character_id}/events").body) + end + + # Get a list of series for a particular character. + # @param character_id [Integer] the ID of the character. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.characters.series(character_id: 1234) + def series(character_id:) + SeriesDataWrapper.from_json(get_request("characters/#{character_id}/series").body) + end + + # Get a list of stories for a particular character. + # @param character_id [Integer] the ID of the character. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.stories.characters(character_id: 1234) + def stories(character_id:) + StoryDataWrapper.from_json(get_request("characters/#{character_id}/stories").body) + end + end +end diff --git a/lib/harkness/resources/comic.rb b/lib/harkness/resources/comic.rb new file mode 100644 index 0000000..a0e86be --- /dev/null +++ b/lib/harkness/resources/comic.rb @@ -0,0 +1,63 @@ +# frozen_string_literal: true + +module Harkness + # The comic resource. + class ComicResource < Resource + # Get a list of comics. + # @param params [Hash] the params to pass to the API request. + # See the [comics documentation from Marvel](https://developer.marvel.com/docs#!/public/getComicsCollection_get_6) + # for valid options. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.comics.list + # client.comics.list(titleStartsWith: "Spider", limit: 10, orderBy: "issueNumber") + def list(**params) + ComicDataWrapper.from_json(get_request("comics", params: params).body) + end + + # Get a single comic. + # @param comic_id [Integer] the ID of the comic. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.comics.retrieve(comic_id: 1234) + def retrieve(comic_id:) + ComicDataWrapper.from_json(get_request("comics/#{comic_id}").body) + end + + # Get a list of characters for a particular comic. + # @param comic_id [Integer] the ID of the comic. + # @return [Harkness::CharacterDataWrapper] the top level wrapper around the character API response. + # @example + # client.comics.characters(comic_id: 1234) + def characters(comic_id:) + CharacterDataWrapper.from_json(get_request("comics/#{comic_id}/characters").body) + end + + # Get a list of creators for a particular comic. + # @param comic_id [Integer] the ID of the comic. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.comics.creators(comic_id: 1234) + def creators(comic_id:) + CreatorDataWrapper.from_json(get_request("comics/#{comic_id}/creators").body) + end + + # Get a list of events for a particular comic. + # @param comic_id [Integer] the ID of the comic. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.comics.events(comic_id: 1234) + def events(comic_id:) + EventDataWrapper.from_json(get_request("comics/#{comic_id}/events").body) + end + + # Get a list of stories for a particular comic. + # @param comic_id [Integer] the ID of the comic. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.comics.stories(comic_id: 1234) + def stories(comic_id:) + StoryDataWrapper.from_json(get_request("comics/#{comic_id}/stories").body) + end + end +end diff --git a/lib/harkness/resources/creator.rb b/lib/harkness/resources/creator.rb new file mode 100644 index 0000000..4b88246 --- /dev/null +++ b/lib/harkness/resources/creator.rb @@ -0,0 +1,63 @@ +# frozen_string_literal: true + +module Harkness + # The creator resource. + class CreatorResource < Resource + # Get a list of creators. + # @param params [Hash] the params to pass to the API request. + # See the [creators documentation from Marvel](https://developer.marvel.com/docs#!/public/getCreatorCollection_get_12) + # for valid options. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.creators.list + # client.creators.list(firstNameStartsWith: "Ben", limit: 10, orderBy: "lastName") + def list(**params) + CreatorDataWrapper.from_json(get_request("creators", params: params).body) + end + + # Get a single creator. + # @param creator_id [Integer] the ID of the creator. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.creators.retrieve(creator_id: 1234) + def retrieve(creator_id:) + CreatorDataWrapper.from_json(get_request("creators/#{creator_id}").body) + end + + # Get a list of comics for a particular creator. + # @param creator_id [Integer] the ID of the creator. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.creators.comics(creator_id: 1234) + def comics(creator_id:) + ComicDataWrapper.from_json(get_request("creators/#{creator_id}/comics").body) + end + + # Get a list of events for a particular creator. + # @param creator_id [Integer] the ID of the creator. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.creators.events(creator_id: 1234) + def events(creator_id:) + EventDataWrapper.from_json(get_request("creators/#{creator_id}/events").body) + end + + # Get a list of series for a particular creator. + # @param creator_id [Integer] the ID of the creator. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.creators.series(creator_id: 1234) + def series(creator_id:) + SeriesDataWrapper.from_json(get_request("creators/#{creator_id}/series").body) + end + + # Get a list of stories for a particular creator. + # @param creator_id [Integer] the ID of the creator. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.creators.stories(creator_id: 1234) + def stories(creator_id:) + StoryDataWrapper.from_json(get_request("creators/#{creator_id}/stories").body) + end + end +end diff --git a/lib/harkness/resources/event.rb b/lib/harkness/resources/event.rb new file mode 100644 index 0000000..1d84c86 --- /dev/null +++ b/lib/harkness/resources/event.rb @@ -0,0 +1,72 @@ +# frozen_string_literal: true + +module Harkness + # The event resource. + class EventResource < Resource + # Get a list of events. + # @param params [Hash] the params to pass to the API request. + # See the [events documentation from Marvel](https://developer.marvel.com/docs#!/public/getCreatorCollection_get_12) + # for valid options. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.events.list + # client.events.list(nameStartsWith: "2016", limit: 10, orderBy: "-name") + def list(**params) + EventDataWrapper.from_json(get_request("events", params: params).body) + end + + # Get a single event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.events.retrieve(event_id: 1234) + def retrieve(event_id:) + EventDataWrapper.from_json(get_request("events/#{event_id}").body) + end + + # Get a list of comics for a particular event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.events.comics(event_id: 1234) + def comics(event_id:) + ComicDataWrapper.from_json(get_request("events/#{event_id}/comics").body) + end + + # Get a list of series for a particular event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.events.series(event_id: 1234) + def series(event_id:) + SeriesDataWrapper.from_json(get_request("events/#{event_id}/series").body) + end + + # Get a list of stories for a particular event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.events.stories(event_id: 1234) + def stories(event_id:) + StoryDataWrapper.from_json(get_request("events/#{event_id}/stories").body) + end + + # Get a list of characters for a particular event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::CharaacterDataWrapper] the top level wrapper around the event API response. + # @example + # client.events.characters(event_id: 1234) + def characters(event_id:) + CharacterDataWrapper.from_json(get_request("events/#{event_id}/characters").body) + end + + # Get a list of creators for a particular event. + # @param event_id [Integer] the ID of the event. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.events.creators(event_id: 1234) + def creators(event_id:) + CreatorDataWrapper.from_json(get_request("events/#{event_id}/creators").body) + end + end +end diff --git a/lib/harkness/resources/series.rb b/lib/harkness/resources/series.rb new file mode 100644 index 0000000..18d6f08 --- /dev/null +++ b/lib/harkness/resources/series.rb @@ -0,0 +1,72 @@ +# frozen_string_literal: true + +module Harkness + # The series resource. + class SeriesResource < Resource + # Get a list of series. + # @param params [Hash] the params to pass to the API request. + # See the [series documentation from Marvel](https://developer.marvel.com/docs#!/public/getCreatorCollection_get_12) + # for valid options. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.series.list + # client.series.list(titleStartsWith: "Ant-", limit: 10, orderBy: "title") + def list(**params) + SeriesDataWrapper.from_json(get_request("series", params: params).body) + end + + # Get a single series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.series.retrieve(series_id: 1234) + def retrieve(series_id:) + SeriesDataWrapper.from_json(get_request("series/#{series_id}").body) + end + + # Get a list of comics for a particular series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.series.comics(series_id: 1234) + def comics(series_id:) + ComicDataWrapper.from_json(get_request("series/#{series_id}/comics").body) + end + + # Get a list of stories for a particular series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.series.stories(series_id: 1234) + def stories(series_id:) + StoryDataWrapper.from_json(get_request("series/#{series_id}/stories").body) + end + + # Get a list of characters for a particular series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::CharacterDataWrapper] the top level wrapper around the character API response. + # @example + # client.series.characters(series_id: 1234) + def characters(series_id:) + CharacterDataWrapper.from_json(get_request("series/#{series_id}/characters").body) + end + + # Get a list of creators for a particular series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.series.creators(series_id: 1234) + def creators(series_id:) + CreatorDataWrapper.from_json(get_request("series/#{series_id}/creators").body) + end + + # Get a list of events for a particular series. + # @param series_id [Integer] the ID of the series. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.series.events(series_id: 1234) + def events(series_id:) + EventDataWrapper.from_json(get_request("series/#{series_id}/events").body) + end + end +end diff --git a/lib/harkness/resources/story.rb b/lib/harkness/resources/story.rb new file mode 100644 index 0000000..44a1be4 --- /dev/null +++ b/lib/harkness/resources/story.rb @@ -0,0 +1,72 @@ +# frozen_string_literal: true + +module Harkness + # The story resource. + class StoryResource < Resource + # Get a list of stories. + # @param params [Hash] the params to pass to the API request. + # See the [stories documentation from Marvel](https://developer.marvel.com/docs#!/public/getCreatorCollection_get_12) + # for valid options. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.stories.list + # client.stories.list(creators: "1234", limit: 10, orderBy: "id") + def list(**params) + StoryDataWrapper.from_json(get_request("stories", params: params).body) + end + + # Get a single story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::StoryDataWrapper] the top level wrapper around the story API response. + # @example + # client.stories.retrieve(story_id: 1234) + def retrieve(story_id:) + StoryDataWrapper.from_json(get_request("stories/#{story_id}").body) + end + + # Get a list of comics for a particular story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::ComicDataWrapper] the top level wrapper around the comic API response. + # @example + # client.stories.comics(story_id: 1234) + def comics(story_id:) + ComicDataWrapper.from_json(get_request("stories/#{story_id}/comics").body) + end + + # Get a list of events for a particular story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::EventDataWrapper] the top level wrapper around the event API response. + # @example + # client.stories.events(story_id: 1234) + def events(story_id:) + EventDataWrapper.from_json(get_request("stories/#{story_id}/events").body) + end + + # Get a list of series for a particular story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::SeriesDataWrapper] the top level wrapper around the series API response. + # @example + # client.stories.series(story_id: 1234) + def series(story_id:) + SeriesDataWrapper.from_json(get_request("stories/#{story_id}/series").body) + end + + # Get a list of characters for a particular story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::CharacterDataWrapper] the top level wrapper around the character API response. + # @example + # client.stories.characters(story_id: 1234) + def characters(story_id:) + CharacterDataWrapper.from_json(get_request("stories/#{story_id}/characters").body) + end + + # Get a list of creators for a particular story. + # @param story_id [Integer] the ID of the story. + # @return [Harkness::CreatorDataWrapper] the top level wrapper around the creator API response. + # @example + # client.stories.creators(story_id: 1234) + def creators(story_id:) + CreatorDataWrapper.from_json(get_request("stories/#{story_id}/creators").body) + end + end +end diff --git a/lib/harkness/version.rb b/lib/harkness/version.rb new file mode 100644 index 0000000..be6d901 --- /dev/null +++ b/lib/harkness/version.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +module Harkness + VERSION = "1.0.0" +end diff --git a/spec/character_spec.rb b/spec/character_spec.rb new file mode 100644 index 0000000..0fdbb6d --- /dev/null +++ b/spec/character_spec.rb @@ -0,0 +1,75 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::CharacterResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets characters" do + characters = client.characters.list + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(20) + expect(characters.data.results[0].name).to eq("3-D Man") + end + + it "gets characters with params" do + characters = client.characters.list(limit: 1, nameStartsWith: "Spider") + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(1) + expect(characters.data.results[0].name).to eq("Spider-dok") + end + + it "gets a character by ID" do + character = client.characters.retrieve(character_id: 1_011_334) + expect(character.data.results[0].class).to eq(Harkness::Character) + expect(character.data.results.length).to eq(1) + expect(character.data.total).to eq(1) + expect(character.data.results[0].name).to eq("3-D Man") + end + + it "gets a character's comics by ID" do + comics = client.characters.comics(character_id: 1_011_334) + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(12) + expect(comics.data.total).to eq(12) + expect(comics.data.results[0].title).to eq("Avengers: The Initiative (2007) #19") + end + + it "gets a character's events by ID" do + events = client.characters.events(character_id: 1_011_334) + expect(events.data.results[0].class).to eq(Harkness::Event) + expect(events.data.results.length).to eq(1) + expect(events.data.total).to eq(1) + expect(events.data.results[0].title).to eq("Secret Invasion") + end + + it "gets a character's series by ID" do + series = client.characters.series(character_id: 1_011_334) + expect(series.data.results[0].class).to eq(Harkness::Series) + expect(series.data.results.length).to eq(3) + expect(series.data.total).to eq(3) + expect(series.data.results[0].title).to eq("Avengers: The Initiative (2007 - 2010)") + end + + it "gets a character's stories by ID" do + stories = client.characters.stories(character_id: 1_009_178) + expect(stories.data.results[0].class).to eq(Harkness::Story) + expect(stories.data.results.length).to eq(1) + expect(stories.data.total).to eq(1) + expect(stories.data.results[0].title).to eq("Fresh Upstart") + end +end diff --git a/spec/comic_spec.rb b/spec/comic_spec.rb new file mode 100644 index 0000000..24117e4 --- /dev/null +++ b/spec/comic_spec.rb @@ -0,0 +1,75 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::ComicResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets comics" do + comics = client.comics.list + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(20) + expect(comics.data.results[0].title).to eq("Marvel Previews (2017)") + end + + it "gets comics with params" do + comics = client.comics.list(limit: 1, titleStartsWith: "Spider") + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(1) + expect(comics.data.results[0].title).to eq("Spider-Man (2016) #6 (Anka Mighty Men Variant)") + end + + it "gets a comic by ID" do + comic = client.comics.retrieve(comic_id: 1332) + expect(comic.data.results[0].class).to eq(Harkness::Comic) + expect(comic.data.results.length).to eq(1) + expect(comic.data.total).to eq(1) + expect(comic.data.results[0].title).to eq("X-Men: Days of Future Past (Trade Paperback)") + end + + it "gets a comic's characters by ID" do + characters = client.comics.characters(comic_id: 1332) + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(10) + expect(characters.data.total).to eq(10) + expect(characters.data.results[0].name).to eq("Archangel") + end + + it "gets a comic's creators by ID" do + creators = client.comics.creators(comic_id: 17_701) + expect(creators.data.results[0].class).to eq(Harkness::Creator) + expect(creators.data.results.length).to eq(16) + expect(creators.data.total).to eq(16) + expect(creators.data.results[0].firstName).to eq("Terry") + end + + it "gets a comic's events by ID" do + events = client.comics.events(comic_id: 17_701) + expect(events.data.results[0].class).to eq(Harkness::Event) + expect(events.data.results.length).to eq(1) + expect(events.data.total).to eq(1) + expect(events.data.results[0].title).to eq("Age of Apocalypse") + end + + it "gets a comic's stories by ID" do + stories = client.comics.stories(comic_id: 1332) + expect(stories.data.results[0].class).to eq(Harkness::Story) + expect(stories.data.results.length).to eq(3) + expect(stories.data.total).to eq(3) + expect(stories.data.results[0].title).to eq("Days of Future Past") + end +end diff --git a/spec/creator_spec.rb b/spec/creator_spec.rb new file mode 100644 index 0000000..ac8fc01 --- /dev/null +++ b/spec/creator_spec.rb @@ -0,0 +1,72 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::CreatorResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets creators" do + creators = client.creators.list + expect(creators.data.results.length).to eq(20) + expect(creators.data.results[0].firstName).to eq("#O") + end + + it "gets creators with params" do + creators = client.creators.list(limit: 1, nameStartsWith: "Ben") + expect(creators.data.results.length).to eq(1) + expect(creators.data.results[0].firstName).to eq("Bengal") + end + + it "gets a creator by ID" do + creator = client.creators.retrieve(creator_id: 8098) + expect(creator.data.results.length).to eq(1) + expect(creator.data.total).to eq(1) + expect(creator.data.results[0].firstName).to eq("Bengal") + end + + it "gets a creator's comics by ID" do + comics = client.creators.comics(creator_id: 8098) + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(20) + expect(comics.data.total).to eq(23) + expect(comics.data.results[0].title).to eq("Spider-Gwen: Ghost-Spider Vol. 2 - Impossible Year (Trade Paperback)") + end + + it "gets a creator's events by ID" do + events = client.creators.events(creator_id: 4994) + expect(events.data.results[0].class).to eq(Harkness::Event) + expect(events.data.results.length).to eq(4) + expect(events.data.total).to eq(4) + expect(events.data.results[0].title).to eq("Age of Ultron") + end + + it "gets a creator's series by ID" do + series = client.creators.series(creator_id: 8098) + expect(series.data.results[0].class).to eq(Harkness::Series) + expect(series.data.results.length).to eq(9) + expect(series.data.total).to eq(9) + expect(series.data.results[0].title).to eq("All-New Wolverine (2015 - 2018)") + end + + it "gets a creator's stories by ID" do + stories = client.creators.stories(creator_id: 8098) + expect(stories.data.results[0].class).to eq(Harkness::Story) + expect(stories.data.results.length).to eq(20) + expect(stories.data.total).to eq(25) + expect(stories.data.results[0].title).to eq("cover from Avengers (2012) #34.2") + end +end diff --git a/spec/error_spec.rb b/spec/error_spec.rb new file mode 100644 index 0000000..ebf7efc --- /dev/null +++ b/spec/error_spec.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::Error, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "returns an error with invalid parameters" do + expect { + client.comics.list(limit: 100_000) + }.to raise_error(Harkness::Error::Conflict) + end +end diff --git a/spec/event_spec.rb b/spec/event_spec.rb new file mode 100644 index 0000000..fdde60c --- /dev/null +++ b/spec/event_spec.rb @@ -0,0 +1,80 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::EventResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets events" do + events = client.events.list + expect(events.data.results.length).to eq(20) + expect(events.data.results[0].title).to eq("Acts of Vengeance!") + end + + it "gets events with params" do + events = client.events.list(limit: 1, nameStartsWith: "Age") + expect(events.data.results.length).to eq(1) + expect(events.data.results[0].title).to eq("Age of Apocalypse") + end + + it "gets a event by ID" do + event = client.events.retrieve(event_id: 227) + expect(event.data.results.length).to eq(1) + expect(event.data.total).to eq(1) + expect(event.data.results[0].title).to eq("Age of Apocalypse") + end + + it "gets a event's comics by ID" do + comics = client.events.comics(event_id: 227) + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(20) + expect(comics.data.total).to eq(50) + expect(comics.data.results[0].title).to eq("X-Men: The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)") + end + + it "gets a event's series by ID" do + series = client.events.series(event_id: 227) + expect(series.data.results[0].class).to eq(Harkness::Series) + expect(series.data.results.length).to eq(20) + expect(series.data.total).to eq(20) + expect(series.data.results[0].title).to eq("Age of Apocalypse: The Chosen (1995)") + end + + it "gets a event's stories by ID" do + stories = client.events.stories(event_id: 227) + expect(stories.data.results[0].class).to eq(Harkness::Story) + expect(stories.data.results.length).to eq(20) + expect(stories.data.total).to eq(197) + expect(stories.data.results[0].title).to eq("X-Men Chronicles 1-2; Tales from the AOA: By the Light") + end + + it "gets a events's characters by ID" do + characters = client.events.characters(event_id: 227) + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(20) + expect(characters.data.total).to eq(91) + expect(characters.data.results[0].name).to eq("Abyss") + end + + it "gets a events's creators by ID" do + creators = client.events.creators(event_id: 227) + expect(creators.data.results[0].class).to eq(Harkness::Creator) + expect(creators.data.results.length).to eq(20) + expect(creators.data.total).to eq(111) + expect(creators.data.results[0].firstName).to eq("Comicraft") + end +end diff --git a/spec/harkness_spec.rb b/spec/harkness_spec.rb new file mode 100644 index 0000000..6eb266f --- /dev/null +++ b/spec/harkness_spec.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +RSpec.describe Harkness do + it "has a version number" do + expect(Harkness::VERSION).not_to be nil + end +end diff --git a/spec/series_spec.rb b/spec/series_spec.rb new file mode 100644 index 0000000..98028c3 --- /dev/null +++ b/spec/series_spec.rb @@ -0,0 +1,80 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::SeriesResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets series" do + series = client.series.list + expect(series.data.results.length).to eq(20) + expect(series.data.results[0].title).to eq(" Fantastic Four by Dan Slott Vol. 1 (2021)") + end + + it "gets series with params" do + series = client.series.list(limit: 1, titleStartsWith: "160") + expect(series.data.results.length).to eq(1) + expect(series.data.results[0].title).to eq("1602 (2003 - 2004)") + end + + it "gets a series by ID" do + series = client.series.retrieve(series_id: 19_244) + expect(series.data.results.length).to eq(1) + expect(series.data.total).to eq(1) + expect(series.data.results[0].title).to eq("1602 Witch Hunter Angela (2015)") + end + + it "gets a series' comics by ID" do + comics = client.series.comics(series_id: 18_454) + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(5) + expect(comics.data.total).to eq(5) + expect(comics.data.results[0].title).to eq("100th Anniversary Special (2014) #1") + end + + it "gets a series' events by ID" do + events = client.series.events(series_id: 2116) + expect(events.data.results[0].class).to eq(Harkness::Event) + expect(events.data.results.length).to eq(3) + expect(events.data.total).to eq(3) + expect(events.data.results[0].title).to eq("Acts of Vengeance!") + end + + it "gets a series' stories by ID" do + stories = client.series.stories(series_id: 18_454) + expect(stories.data.results[0].class).to eq(Harkness::Story) + expect(stories.data.results.length).to eq(10) + expect(stories.data.total).to eq(10) + expect(stories.data.results[0].title).to eq("cover from 100th Anniversary Special (2014) #1") + end + + it "gets a series' characters by ID" do + characters = client.series.characters(series_id: 454) + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(20) + expect(characters.data.total).to eq(147) + expect(characters.data.results[0].name).to eq("Annihilus") + end + + it "gets a series' creators by ID" do + creators = client.series.creators(series_id: 18_454) + expect(creators.data.results[0].class).to eq(Harkness::Creator) + expect(creators.data.results.length).to eq(5) + expect(creators.data.total).to eq(5) + expect(creators.data.results[0].firstName).to eq("Andy") + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..8ba6011 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,33 @@ +# frozen_string_literal: true + +require "simplecov" +SimpleCov.start do + add_filter "/spec/" +end + +if ENV.fetch("CI", nil) + require "simplecov-cobertura" + SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter +end + +require "harkness" +require "vcr" + +RSpec.configure do |config| + config.example_status_persistence_file_path = ".rspec_status" + config.disable_monkey_patching! + config.expect_with :rspec do |c| + c.syntax = :expect + end +end + +VCR.configure do |c| + c.cassette_library_dir = "spec/vcr" + c.configure_rspec_metadata! + c.hook_into :webmock + c.filter_sensitive_data("abcd") { ENV["MARVEL_PUBLIC_KEY"] } + c.before_record do |i| + i.response.body.force_encoding("UTF-8") + end + c.debug_logger +end diff --git a/spec/story_spec.rb b/spec/story_spec.rb new file mode 100644 index 0000000..15b4972 --- /dev/null +++ b/spec/story_spec.rb @@ -0,0 +1,81 @@ +# frozen_string_literal: true + +require "spec_helper" +require "timecop" + +RSpec.describe Harkness::StoryResource, vcr: true do + let(:client) { + Harkness::Client.new( + public_key: ENV.fetch("MARVEL_PUBLIC_KEY", "abcd"), + private_key: ENV.fetch("MARVEL_PRIVATE_KEY", "1234") + ) + } + + before do + Timecop.freeze(Time.utc(2023, 3, 9)) + end + + after do + Timecop.return + end + + it "gets stories" do + stories = client.stories.list + expect(stories.data.results.length).to eq(20) + expect(stories.data.results[0].title).to eq("Investigating the murder of a teenage girl, Cage suddenly learns "\ + "that a three-way gang war is under way for control of the turf") + end + + it "gets stories with params" do + stories = client.stories.list(limit: 1, comics: "1332") + expect(stories.data.results.length).to eq(1) + expect(stories.data.results[0].title).to eq("Days of Future Past") + end + + it "gets a story by ID" do + stories = client.stories.retrieve(story_id: 11) + expect(stories.data.results.length).to eq(1) + expect(stories.data.total).to eq(1) + expect(stories.data.results[0].title).to eq("Interior #11") + end + + it "gets a story's characters by ID" do + characters = client.stories.characters(story_id: 1315) + expect(characters.data.results[0].class).to eq(Harkness::Character) + expect(characters.data.results.length).to eq(5) + expect(characters.data.total).to eq(5) + expect(characters.data.results[0].name).to eq("Carnage (Ultimate)") + end + + it "gets a story's creators by ID" do + creators = client.stories.creators(story_id: 25_655) + expect(creators.data.results[0].class).to eq(Harkness::Creator) + expect(creators.data.results.length).to eq(1) + expect(creators.data.total).to eq(1) + expect(creators.data.results[0].firstName).to eq("#O") + end + + it "gets a story's events by ID" do + events = client.stories.events(story_id: 12_960) + expect(events.data.results[0].class).to eq(Harkness::Event) + expect(events.data.results.length).to eq(1) + expect(events.data.total).to eq(1) + expect(events.data.results[0].title).to eq("Acts of Vengeance!") + end + + it "gets a story's series by ID" do + series = client.stories.series(story_id: 30) + expect(series.data.results[0].class).to eq(Harkness::Series) + expect(series.data.results.length).to eq(1) + expect(series.data.total).to eq(1) + expect(series.data.results[0].title).to eq("Essential Incredible Hulk Vol. II (1999)") + end + + it "gets a story's comics by ID" do + comics = client.stories.comics(story_id: 30) + expect(comics.data.results[0].class).to eq(Harkness::Comic) + expect(comics.data.results.length).to eq(1) + expect(comics.data.total).to eq(1) + expect(comics.data.results[0].title).to eq("Essential Incredible Hulk Vol. II (Trade Paperback)") + end +end diff --git a/spec/vcr/Harkness_CharacterResource/gets_a_character_by_ID.yml b/spec/vcr/Harkness_CharacterResource/gets_a_character_by_ID.yml new file mode 100644 index 0000000..5862d13 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_a_character_by_ID.yml @@ -0,0 +1,75 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters/1011334?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 55342c8b21941bfea4b795ff85633d9063e1da0e + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 00:42:49 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"55342c8b21941bfea4b795ff85633d9063e1da0e","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":1011334,"name":"3-D + Man","description":"","modified":"2014-04-29T14:18:17-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/e0/535fecbbb9784","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","comics":{"available":12,"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/8500","name":"Deadpool + (1997) #44"},{"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":12},"series":{"available":3,"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/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel + Premiere (1972 - 1981)"}],"returned":3},"stories":{"available":21,"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/47184","name":"AVENGERS: + THE INITIATIVE (2007) #14","type":"cover"},{"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/47498","name":"AVENGERS: + THE INITIATIVE (2007) #15","type":"cover"},{"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/48361","name":"AVENGERS: + THE INITIATIVE (2007) #17","type":"cover"},{"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/49103","name":"AVENGERS: + THE INITIATIVE (2007) #18","type":"cover"},{"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"}],"returned":20},"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/characters/74/3-d_man?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/3-D_Man_(Chandler)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011334/3-d_man?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_a_character_s_comics_by_ID.yml b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_comics_by_ID.yml new file mode 100644 index 0000000..b3c0700 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_comics_by_ID.yml @@ -0,0 +1,333 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters/1011334/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - f9f784ccb636c27f1c361d814f26b3230a2d989f + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:05:21 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"f9f784ccb636c27f1c361d814f26b3230a2d989f","data":{"offset":0,"limit":20,"total":12,"count":12,"results":[{"id":22506,"digitalId":10949,"title":"Avengers: + The Initiative (2007) #19","issueNumber":19,"variantDescription":"","description":"Join + 3-D MAN, CLOUD 9, KOMODO, HARDBALL, and heroes around America in the battle + that will decide the fate of the planet and the future of the Initiative program. + Will the Kill Krew Army win the day?","modified":"2015-10-27T16:38:23-0400","isbn":"","upc":"5960606084-01911","diamondCode":"SEP082362","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Join + 3-D MAN, CLOUD 9, KOMODO, HARDBALL, and heroes around America in the battle + that will decide the fate of the planet and the future of the Initiative program. + Will the Kill Krew Army win the day?"},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION Tie-In!\r
\"V-S DAY\"\r
It''s been leading to this since the + Hank Pym Skrull first came up with the idea for a Fifty State Initiative. This + is the final assault in the Secret Invasion, a nation-wide plan that will + test the limits of 3-D MAN''S superhuman militia, THE KILL KREW ARMY! Join + 3-D MAN, CLOUD 9, KOMODO, HARDBALL, and heroes around America in the battle + that will decide the fate of the planet and the future of the Initiative program. Win + or lose, there''s no turning back. After today, everything changes.\r
Rated + T+ ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/22506","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/22506/avengers_the_initiative_2007_19?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-19/digital-comic/10949?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10949&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10949?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-12-17T00:00:00-0500"},{"type":"focDate","date":"2008-11-27T00:00:00-0500"},{"type":"unlimitedDate","date":"2010-02-23T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/03/58dd080719806","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/03/58dd080719806","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22506/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1400","name":"Bong + Dazo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8706","name":"Jay + David Ramos","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/500","name":"Christopher + Sotomayor","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8584","name":"Harvey + Tolibao","role":"inker"}],"returned":9},"characters":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22506/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009284","name":"Dum + Dum Dugan"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010821","name":"Hardball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009376","name":"Jocasta"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010818","name":"Komodo + (Melati Kusuma)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":9},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22506/stories","items":[{"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"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22506/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":22300,"digitalId":0,"title":"Avengers: The + Initiative (2007) #18 (ZOMBIE VARIANT)","issueNumber":18,"variantDescription":"ZOMBIE + VARIANT","description":"SECRET INVASION TIE-IN!\r
THE EXPLOSIVE FINALE + STARTS HERE!\r
Now that the KILL KREW knows Skrullowjacket''s master plan, + can they stop the TRUE purpose of the Fifty State Initiative? Plus: It''s + THOR GIRL vs. ULTRA GIRL! One is more than she appears to be... and the other''s + a Skrull. And, after fourteen issues, are we REALLY going to unmask MUTANT + ZERO?!\r
Rated T+ ...$2.99\r
","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960606084-01821","diamondCode":"AUG082378","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN!\r
THE EXPLOSIVE FINALE STARTS HERE!\r
Now that the + KILL KREW knows Skrullowjacket''s master plan, can they stop the TRUE purpose + of the Fifty State Initiative? Plus: It''s THOR GIRL vs. ULTRA GIRL! One + is more than she appears to be... and the other''s a Skrull. And, after fourteen + issues, are we REALLY going to unmask MUTANT ZERO?!\r
Rated T+ ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/22300","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/22300/avengers_the_initiative_2007_18_zombie_variant/zombie_variant?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22299","name":"Avengers: + The Initiative (2007) #18"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-10-29T00:00:00-0400"},{"type":"focDate","date":"2008-10-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/10/4e94a23255996","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/10/4e94a23255996","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/20/4bb63aa561aa0","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22300/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1054","name":"Juan + Doe","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/548","name":"Andrew + Hennessy","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4981","name":"Steve + Kurth","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1405","name":"Matt + Milla","role":"colorist"}],"returned":8},"characters":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22300/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010823","name":"Cloud + 9"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009284","name":"Dum + Dum Dugan"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010702","name":"Gravity"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010818","name":"Komodo + (Melati Kusuma)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011057","name":"Slapstick"}],"returned":9},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22300/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49105","name":"Avengers: + The Initiative (2007) #18, Zombie Variant","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49106","name":"Avengers: + The Initiative (2007) #18, Zombie Variant - Int","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22300/events","items":[],"returned":0}},{"id":22299,"digitalId":10948,"title":"Avengers: + The Initiative (2007) #18","issueNumber":18,"variantDescription":"","description":"Now + that the Kill Krew knows Skrullowjacket''s master plan, can they stop the + true mission of the Fifty State Initiative? Plus, Thor Girl vs. Ultra Girl! + One is more than she appears to be and the other''s a Skrull!","modified":"2014-08-05T14:09:33-0400","isbn":"","upc":"5960606084-01811","diamondCode":"AUG082377","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Now + that the Kill Krew knows Skrullowjacket''s master plan, can they stop the + true mission of the Fifty State Initiative? Plus, Thor Girl vs. Ultra Girl! + One is more than she appears to be and the other''s a Skrull!"},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN!\r
THE EXPLOSIVE FINALE STARTS HERE!\r
Now that the + KILL KREW knows Skrullowjacket''s master plan, can they stop the TRUE purpose + of the Fifty State Initiative? Plus: It''s THOR GIRL vs. ULTRA GIRL! One + is more than she appears to be... and the other''s a Skrull. And, after fourteen + issues, are we REALLY going to unmask MUTANT ZERO?!\r
Rated T+ ...$2.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/22299","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/22299/avengers_the_initiative_2007_18?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-18/digital-comic/10948?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10948&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10948?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22300","name":"Avengers: + The Initiative (2007) #18 (ZOMBIE VARIANT)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-10-29T00:00:00-0400"},{"type":"focDate","date":"2008-10-09T00:00:00-0400"},{"type":"unlimitedDate","date":"2010-02-09T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/20/58dd057d304d1","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/20/58dd057d304d1","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/4bb6d098d144a","extension":"jpg"}],"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22299/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/548","name":"Andrew + Hennessy","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4981","name":"Steve + Kurth","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1405","name":"Matt + Milla","role":"colorist"}],"returned":7},"characters":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22299/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010823","name":"Cloud + 9"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009284","name":"Dum + Dum Dugan"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010702","name":"Gravity"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010821","name":"Hardball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009376","name":"Jocasta"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010818","name":"Komodo + (Melati Kusuma)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010820","name":"Thor + Girl"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":13},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22299/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49103","name":"AVENGERS: + THE INITIATIVE (2007) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49104","name":"Avengers: + The Initiative (2007) #18 - Int","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/22299/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":21975,"digitalId":10721,"title":"Avengers: + The Initiative (2007) #17","issueNumber":17,"variantDescription":"","description":"Join + Mutant Zero, Trauma, Bengal, Constrictor, and Ant-Man as they undertake this + war''s most dangerous mission: to take out the Skrull Spider-Woman! Plus, + a new Avenger and more clues as to Mutant Zero''s identity!","modified":"2014-08-05T14:09:31-0400","isbn":"","upc":"5960606084-01711","diamondCode":"JUL082310","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Join + Mutant Zero, Trauma, Bengal, Constrictor, and Ant-Man as they undertake this + war''s most dangerous mission: to take out the Skrull Spider-Woman! Plus, + a new Avenger and more clues as to Mutant Zero''s identity!"},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN\r
NEW CLUES TO MUTANT ZERO''S IDENTITY AND AN AVENGER RETURNS!\r
Camp + Hammond has been overrun, not just by the occupying Skrull army, but by the + SKRULL QUEEN, herself! Well guess what? That''s just what the SHADOW INITIATIVE + wanted! Join MUTANT ZERO, TRAUMA, BENGAL, CONSTRICTOR, and ANT-MAN as they + try this war''s most dangerous mission: to take out the SKRULL-SPIDER-WOMAN! That + IS why you stayed behind, right ANT-MAN? Also: As 3-D MAN and the KILL KREW + carve a green, bloody swath across America, their numbers continue to grow. And + in this issue, a classic AVENGER signs up-- and joins the AVENGERS: INITIATIVE + ongoing cast!\r
Rated T+ ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/21975","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/21975/avengers_the_initiative_2007_17?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-17/digital-comic/10721?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10721&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10721?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-09-24T00:00:00-0400"},{"type":"focDate","date":"2008-09-04T00:00:00-0400"},{"type":"unlimitedDate","date":"2008-10-29T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/a0/58dd03dc2ec00","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/a0/58dd03dc2ec00","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/50/4bb676b26c606","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21975/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8706","name":"Jay + David Ramos","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8584","name":"Harvey + Tolibao","role":"inker"}],"returned":6},"characters":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21975/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010829","name":"Bengal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009376","name":"Jocasta"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010818","name":"Komodo + (Melati Kusuma)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick + Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009608","name":"Spider-Woman + (Jessica Drew)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010822","name":"Trauma"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":13},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21975/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/48361","name":"AVENGERS: + THE INITIATIVE (2007) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/48362","name":"Avengers: + The Initiative (2007) #17 - Int","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21975/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":21741,"digitalId":10718,"title":"Avengers: + The Initiative (2007) #16","issueNumber":16,"variantDescription":"","description":"The + Skrull Kill Krew is back! And they''re ready to kill, maim, torture, and butcher + every mother lovin'' Skrull out there! Also, back at Camp Hammond, Ant-Man + is in a giant world of trouble.","modified":"2014-08-05T14:09:28-0400","isbn":"","upc":"5960606084-01611","diamondCode":"JUN082352","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"The + Skrull Kill Krew is back! And they''re ready to kill, maim, torture, and butcher + every mother lovin'' Skrull out there! Also, back at Camp Hammond, Ant-Man + is in a giant world of trouble."},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN\r
For months you''ve heard one question over and over again: + \"Who do you trust?\" Well we''ve got your answer right here, Earth-boy: + TRUST THE KILL KREW! Yeah, that''s right, the SKRULL KILL KREW are back! And + they''re ready to kill, maim, torture, and butcher every mother lovin'' Skrull + out there! Also, back at Camp Hammond, ANT-MAN is in a giant world of trouble-the + biggest kind of trouble the SECRET INVASION can dish out.\r
Rated T+ ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/21741","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/21741/avengers_the_initiative_2007_16?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-16/digital-comic/10718?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10718&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10718?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-08-27T00:00:00-0400"},{"type":"focDate","date":"2008-08-07T00:00:00-0400"},{"type":"unlimitedDate","date":"2009-07-07T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/58dd01dbc6e51","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/58dd01dbc6e51","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/80/4c361ae117d12","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21741/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano + Caselli","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8949","name":"Luca + Malisan","role":"colorist"}],"returned":6},"characters":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21741/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009180","name":"Beta-Ray + Bill"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009538","name":"Iron + Patriot (James Rhodes)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010818","name":"Komodo + (Melati Kusuma)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick + Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009662","name":"Thing"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010822","name":"Trauma"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017834","name":"War + Machine (James Rhodes)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":11},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21741/stories","items":[{"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"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21741/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":21546,"digitalId":10716,"title":"Avengers: + The Initiative (2007) #15","issueNumber":15,"variantDescription":"","description":"It''s + up to the Initiative to face off against the first major Skrull strike force! + And on the battle field, the cadet with the biggest secret has to choose which + side he''s really on. Plus, a new low for Ant-Man and a new danger for War + Machine!","modified":"2014-08-05T14:09:27-0400","isbn":"","upc":"5960606084-01511","diamondCode":"MAY082306","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"It''s + up to the Initiative to face off against the first major Skrull strike force! + And on the battle field, the cadet with the biggest secret has to choose which + side he''s really on. Plus, a new low for Ant-Man and a new danger for War + Machine!"},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN!\r
\"The Only Good Skrull...\"\r
With the NEW AVENGERS + and the MIGHTY AVENGERS trapped in the Savage Land, it''s up to the AVENGERS + INITIATIVE to face off against the first major strike of the Skrull Invasion! There, + on the field of battle, the cadet with the biggest secret has to choose how + red (or green) his blood really is. Heroes will fall. Heroes will die. And + one shall rise. All THIS and: A new cowardly low for ANT-MAN! A new danger + for WAR MACHINE! And 3-D MAN gains a \"killer\" new \"krew\"!\r
Rated + T+ ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/21546","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/21546/avengers_the_initiative_2007_15?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-15/digital-comic/10716?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10716&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10716?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-07-23T00:00:00-0400"},{"type":"focDate","date":"2008-07-03T00:00:00-0400"},{"type":"unlimitedDate","date":"2009-06-02T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/58dbda827bec8","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/58dbda827bec8","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/90/4bb79730b65d5","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21546/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8706","name":"Jay + David Ramos","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/627","name":"Christina + Strain","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8584","name":"Harvey + Tolibao","role":"penciller"}],"returned":8},"characters":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21546/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009316","name":"Gauntlet + (Joseph Green)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009538","name":"Iron + Patriot (James Rhodes)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017834","name":"War + Machine (James Rhodes)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":8},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21546/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47498","name":"AVENGERS: + THE INITIATIVE (2007) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47499","name":"Avengers: + The Initiative (2007) #15 - Int","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21546/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":21366,"digitalId":10715,"title":"Avengers: + The Initiative (2007) #14","issueNumber":14,"variantDescription":"","description":"The + fates of The Initiative, the United States, and Planet Earth hang in the balance. + Plus: Former Avenger, Delroy Garret, assumes the mantle and arsenal of Earth''s + greatest Skrull-Hunter, The 3-D Man.","modified":"2014-08-05T14:09:26-0400","isbn":"","upc":"5960606084-01411","diamondCode":"APR082297","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"The + fates of The Initiative, the United States, and Planet Earth hang in the balance. + Plus: Former Avenger, Delroy Garret, assumes the mantle and arsenal of Earth''s + greatest Skrull-Hunter, The 3-D Man."},{"type":"issue_solicit_text","language":"en-us","text":"SECRET + INVASION TIE-IN\r
\"We Have Met the Enemy and He Is Us!\"\r
During the + INFILTRATION, a Skrull at the heart of the Camp Hammond said these words: + \"It won''t be long until we have a Skrull in every state! \"Now that Skrull + stands revealed and the fate of The Initiative, the United States, and Planet + Earth hang in the balance. Plus: Former Avenger, Delroy Garret, assumes the + mantle and arsenal of Earth''s greatest Skrull-Hunter, THE 3-D MAN. He''s + here to chew bubblegum and kick some Skrull-@$$. And he''s all out of bubblegum.\r
Rated + T+ ...$2.99 \r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/21366","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/21366/avengers_the_initiative_2007_14?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Avengers-The-Initiative-14/digital-comic/10715?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=10715&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/10715?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24571","name":"Avengers: + The Initiative (2007) #14 (SPOTLIGHT VARIANT)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-06-25T00:00:00-0400"},{"type":"focDate","date":"2008-06-05T00:00:00-0400"},{"type":"unlimitedDate","date":"2009-02-10T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2011-08-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/58dbce634ea70","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/58dbce634ea70","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/30/4bb7c84053318","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21366/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano + Caselli","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1134","name":"Daniele + Rudoni","role":"colorist"}],"returned":6},"characters":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21366/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009639","name":"Super-Skrull"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009670","name":"Tigra + (Greer Nelson)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010822","name":"Trauma"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009737","name":"Yellowjacket + (Hank Pym)"}],"returned":9},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21366/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47184","name":"AVENGERS: + THE INITIATIVE (2007) #14","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47185","name":"Avengers: + The Initiative (2007) #14 - Int","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/21366/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1}},{"id":24571,"digitalId":0,"title":"Avengers: The + Initiative (2007) #14 (SPOTLIGHT VARIANT)","issueNumber":14,"variantDescription":"SPOTLIGHT + VARIANT","description":null,"modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960606084-01421","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/24571","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/24571/avengers_the_initiative_2007_14_spotlight_variant/spotlight_variant?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21366","name":"Avengers: + The Initiative (2007) #14"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2008-06-25T00:00:00-0400"},{"type":"focDate","date":"2008-06-05T00:00:00-0400"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/30/4e948fb5e9b52","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/30/4e948fb5e9b52","extension":"jpg"}],"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/24571/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano + Caselli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12983","name":"Dan + Slott","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1134","name":"Daniele + Rudoni","role":"colorist"}],"returned":7},"characters":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/24571/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009639","name":"Super-Skrull"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009670","name":"Tigra + (Greer Nelson)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010822","name":"Trauma"}],"returned":7},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/24571/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54370","name":"Avengers: + The Initiative (2007) #14, Spotlight Variant","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54371","name":"Avengers: + The Initiative (2007) #14, Spotlight Variant - Int","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/24571/events","items":[],"returned":0}},{"id":8500,"digitalId":23291,"title":"Deadpool + (1997) #44","issueNumber":44,"variantDescription":"","description":null,"modified":"2013-06-05T11:24:31-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/8500","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/8500/deadpool_1997_44?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Deadpool-44/digital-comic/23291?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=23291&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/23291?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2005","name":"Deadpool + (1997 - 2002)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2000-09-01T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2012-07-25T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2013-01-29T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/80/4f206cc0ac28a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/80/4f206cc0ac28a","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/8500/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4135","name":"Shannon + Blanchard","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim + Calafiore","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/235","name":"Jon + Holdredge","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/110","name":"Christopher + Priest","role":"writer"}],"returned":6},"characters":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/8500/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011072","name":"Edwin + Jarvis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009583","name":"She-Hulk + (Jennifer Walters)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010669","name":"Titania"}],"returned":8},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/8500/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66410","name":"Deadpool + (1997) #44","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/96303","name":"Deadpool + (1997) #44","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/8500/events","items":[],"returned":0}},{"id":10225,"digitalId":0,"title":"Marvel + Premiere (1972) #37","issueNumber":37,"variantDescription":"","description":null,"modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/10225","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/10225/marvel_premiere_1972_37?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel + Premiere (1972 - 1981)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1977-08-01T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10225/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1220","name":"Jim + Craig","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13094","name":"Dave + Hunt","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1759","name":"Joe + Rosen","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2909","name":"Roy + Thomas","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1777","name":"Don + Warfield","role":"colorist"}],"returned":5},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10225/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10225/stories","items":[{"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/151209","name":"cover + from Marvel Premiere (1972) #37","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/151210","name":"story + from Marvel Premiere (1972) #37","type":"interiorStory"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10225/events","items":[],"returned":0}},{"id":10224,"digitalId":0,"title":"Marvel + Premiere (1972) #36","issueNumber":36,"variantDescription":"","description":null,"modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/10224","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/10224/marvel_premiere_1972_36?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel + Premiere (1972 - 1981)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1977-06-01T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10224/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1220","name":"Jim + Craig","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13718","name":"Donald + F. Glut","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2909","name":"Roy + Thomas","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13094","name":"Dave + Hunt","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1759","name":"Joe + Rosen","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2053","name":"George + Roussos","role":"colorist"}],"returned":6},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10224/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10224/stories","items":[{"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/151207","name":"cover + from Marvel Premiere (1972) #36","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/151208","name":"story + from Marvel Premiere (1972) #36","type":"interiorStory"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10224/events","items":[],"returned":0}},{"id":10223,"digitalId":0,"title":"Marvel + Premiere (1972) #35","issueNumber":35,"variantDescription":"","description":null,"modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/10223","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/10223/marvel_premiere_1972_35?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel + Premiere (1972 - 1981)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1977-04-01T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10223/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1746","name":"John + Costanza","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1220","name":"Jim + Craig","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13094","name":"Dave + Hunt","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10105","name":"Jorge + Maese","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2909","name":"Roy + Thomas","role":"writer"}],"returned":5},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10223/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10223/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/151205","name":"cover + from Marvel Premiere (1972) #35","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/151206","name":"story + from Marvel Premiere (1972) #35","type":"interiorStory"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/10223/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_a_character_s_events_by_ID.yml b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_events_by_ID.yml new file mode 100644 index 0000000..0b57f69 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_events_by_ID.yml @@ -0,0 +1,127 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters/1011334/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - d290a8ab8f3699d796fa37a97e4ace1e5b69e560 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:06:33 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"d290a8ab8f3699d796fa37a97e4ace1e5b69e560","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":269,"title":"Secret + Invasion","description":"The shape-shifting Skrulls have been infiltrating + the Earth for years, replacing many of Marvel''s heroes with impostors, setting + the stage for an all-out invasion.","resourceURI":"http://gateway.marvel.com/v1/public/events/269","urls":[{"type":"detail","url":"http://marvel.com/comics/events/269/secret_invasion?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Secret_Invasion?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2015-01-20T14:58:35-0500","start":"2008-06-02 + 00:00:00","end":"2009-01-25 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/51ca1749980ae","extension":"jpg"},"creators":{"available":224,"collectionURI":"http://gateway.marvel.com/v1/public/events/269/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3095","name":"Blank","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan + Abnett","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8193","name":"Carrie + Beadle","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4156","name":"Nf","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4117","name":"Ni","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8571","name":"Guru-eFX","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4139","name":"Matthew + Paine","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8824","name":"Jorge + Gonzalez Aguilar","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11401","name":"Various","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11463","name":"Jason + Aaron","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10059","name":"Chris + Acosta","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13661","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/9653","name":"Vincenzo + Acunzo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/498","name":"Greg + Adams","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/779","name":"Matt + Banning","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4014","name":"Axel + Alonso","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellington + Alves","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1358","name":"Al + Avison","role":"penciller"}],"returned":20},"characters":{"available":103,"collectionURI":"http://gateway.marvel.com/v1/public/events/269/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011176","name":"Ajak"},{"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/1010827","name":"Armory"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009596","name":"Banshee + (Theresa Rourke)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010782","name":"Ben + Urich"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010829","name":"Bengal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009180","name":"Beta-Ray + Bill"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009184","name":"Black + Bolt"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","name":"Black + Panther"},{"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/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/1009224","name":"Captain + Marvel (Mar-Vell)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010823","name":"Cloud + 9"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"}],"returned":20},"stories":{"available":359,"collectionURI":"http://gateway.marvel.com/v1/public/events/269/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24517","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24518","name":"Deadpool + (1997) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24519","name":"Behind + the Scenes","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24520","name":"Deadlines","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24521","name":"What''s + Next for the X-Generation","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24553","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24554","name":"Deadpool + (1997) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24579","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24580","name":"Deadpool + (1997) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24601","name":"Interior + #24601","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24602","name":"Deadpool + (1997) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24613","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24614","name":"Deadpool + (1997) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26641","name":"Cover + #26641","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26642","name":"Contents + page","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26643","name":"The + Ageless Orientals That Wouldn''t Die!!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26644","name":"Trapped + In the Nazi Stronghold","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26645","name":"The + Wax Statue That Struck Death","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26646","name":"Short + Circuit","type":"text story"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26647","name":"The + Valley of the Mist","type":"interiorStory"}],"returned":20},"comics":{"available":160,"collectionURI":"http://gateway.marvel.com/v1/public/events/269/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/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/22506","name":"Avengers: + The Initiative (2007) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17293","name":"Avengers: + The Initiative Annual (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23686","name":"Avengers: + The Initiative Vol. 3 - Secret Invasion Premiere (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24299","name":"AVENGERS: + THE INITIATIVE VOL. 3 - SECRET INVASION TPB [DM ONLY] (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21513","name":"Black + Panther (2005) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21716","name":"Black + Panther (2005) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21943","name":"Black + Panther (2005) #41"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21267","name":"Captain + Britain and MI: 13 (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21411","name":"Captain + Britain and MI: 13 (2008) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21584","name":"Captain + Britain and MI: 13 (2008) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21781","name":"Captain + Britain and MI: 13 (2008) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23695","name":"CAPTAIN + BRITAIN AND MI13 VOL. 1: SECRET INVASION TPB [DM ONLY] (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21635","name":"Captain + Marvel: Secret Invasion Premiere (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22021","name":"Deadpool + (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22019","name":"Deadpool + (2008) #2"}],"returned":20},"series":{"available":82,"collectionURI":"http://gateway.marvel.com/v1/public/events/269/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/3087","name":"Avengers: + The Initiative Annual (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6840","name":"Avengers: + The Initiative Vol. 3 - Secret Invasion Premiere (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7496","name":"AVENGERS: + THE INITIATIVE VOL. 3 - SECRET INVASION TPB [DM ONLY] (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/784","name":"Black + Panther (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6849","name":"CAPTAIN + BRITAIN AND MI13 VOL. 1: SECRET INVASION TPB [DM ONLY] (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4884","name":"Captain + Britain and MI: 13 (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5259","name":"Captain + Marvel: Secret Invasion Premiere (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5701","name":"Deadpool + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7713","name":"Deadpool + Vol. 1: Secret Invasion (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7073","name":"Deadpool + Vol. 1: Secret Invasion Premiere (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7714","name":"DEADPOOL + VOL. 1: SECRET INVASION TPB [DM ONLY] (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4885","name":"Guardians + of the Galaxy (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3762","name":"Incredible + Hercules (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6055","name":"Incredible + Hercules: Secret Invasion Premiere (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5267","name":"Iron + Man: Director of S.H.I.E.L.D. (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7024","name":"Mighty + Avengers Vol. 3: Secret Invasion Book 1 (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6442","name":"Mighty + Avengers Vol. 3: Secret Invasion Book 1 Premiere (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7040","name":"MIGHTY + AVENGERS VOL. 3: SECRET INVASION BOOK 1 TPB [DM ONLY] (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7275","name":"Mighty + Avengers Vol. 4: Secret Invasion Book 2 (2009 - Present)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_a_character_s_series_by_ID.yml b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_series_by_ID.yml new file mode 100644 index 0000000..3d6dc18 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_series_by_ID.yml @@ -0,0 +1,243 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters/1011334/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 98b630bd688c6834117f509fec7dcd8924949d9d + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:06:34 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"98b630bd688c6834117f509fec7dcd8924949d9d","data":{"offset":0,"limit":20,"total":3,"count":3,"results":[{"id":1945,"title":"Avengers: + The Initiative (2007 - 2010)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","urls":[{"type":"detail","url":"http://marvel.com/comics/series/1945/avengers_the_initiative_2007_-_2010?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2007,"endYear":2010,"rating":"T","type":"","modified":"2013-03-20T17:51:27-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/a0/514a2ed3302f5","extension":"jpg"},"creators":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/series/1945/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9018","name":"Mahmud + Asrar","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano + Caselli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1400","name":"Bong + Dazo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4981","name":"Steve + Kurth","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9368","name":"Roger + Bonet","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10091","name":"Rebecca + Buchman","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/548","name":"Andrew + Hennessy","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","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/10072","name":"Matteo + De Longis","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1054","name":"Juan + Doe","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13586","name":"Joe + Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/430","name":"Edgar + Delgado","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8949","name":"Luca + Malisan","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1405","name":"Matt + Milla","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"}],"returned":20},"characters":{"available":71,"collectionURI":"http://gateway.marvel.com/v1/public/series/1945/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010802","name":"Ant-Man + (Eric O''Grady)"},{"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/1010829","name":"Bengal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009180","name":"Beta-Ray + Bill"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010325","name":"Betty + Brant"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black + Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010371","name":"Boomerang"},{"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/1010823","name":"Cloud + 9"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010717","name":"Debrii"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009274","name":"Diamondback + (Rachel Leighton)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009284","name":"Dum + Dum Dugan"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009316","name":"Gauntlet + (Joseph Green)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010731","name":"Gorilla + Man"}],"returned":20},"stories":{"available":90,"collectionURI":"http://gateway.marvel.com/v1/public/series/1945/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8381","name":"Avengers: + The Initiative (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8382","name":"Interior + #8382","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8705","name":"AVENGERS: + THE INITIATIVE (2007) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8706","name":"2 + of 6 - 6XLS; THE INITIATIVE BANNER","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32405","name":"AVENGERS: + THE INITIATIVE (2007) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32406","name":"Avengers: + The Initiative (2007) #3 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32626","name":"AVENGERS: + THE INITIATIVE (2007) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32627","name":"Avengers: + The Initiative (2007) #4 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33014","name":"Avengers: + The Initiative (2007) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33015","name":"Avengers: + The Initiative (2007) #5 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33361","name":"Avengers: + The Initiative (2007) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33362","name":"Avengers: + The Initiative (2007) #6 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33363","name":"AVENGERS: + THE INITIATIVE (2007) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33364","name":"Avengers: + The Initiative (2007) #7 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36469","name":"AVENGERS: + THE INITIATIVE (2007) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36470","name":"Avengers: + The Initiative (2007) #8 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36907","name":"AVENGERS: + THE INITIATIVE (2007) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36908","name":"Killed + in Action 1 of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44343","name":"AVENGERS: + THE INITIATIVE (2007) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44344","name":"Avengers: + The Initiative (2007) #10 - Int","type":"interiorStory"}],"returned":20},"comics":{"available":42,"collectionURI":"http://gateway.marvel.com/v1/public/series/1945/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6232","name":"Avengers: + The Initiative (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21843","name":"Avengers: + The Initiative (2007) #1 (50/50 Cover (left))"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21844","name":"Avengers: + The Initiative (2007) #1 (50/50 Cover (right))"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13489","name":"Avengers: + The Initiative (2007) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15869","name":"Avengers: + The Initiative (2007) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15976","name":"Avengers: + The Initiative (2007) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16162","name":"Avengers: + The Initiative (2007) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16542","name":"Avengers: + The Initiative (2007) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16543","name":"Avengers: + The Initiative (2007) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17397","name":"Avengers: + The Initiative (2007) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17638","name":"Avengers: + The Initiative (2007) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20679","name":"Avengers: + The Initiative (2007) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20877","name":"Avengers: + The Initiative (2007) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21012","name":"Avengers: + The Initiative (2007) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21226","name":"Avengers: + The Initiative (2007) #13"},{"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"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/1945/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"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/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":5},"next":null,"previous":null},{"id":2005,"title":"Deadpool + (1997 - 2002)","description":"Wade Wilson: Heartless Merc With a Mouth or...hero? + Laugh, cry and applaud at full volume for the mind-bending adventures of Deadpool, + exploring the psyche and crazed adventures of Marvel''s most unstable personality!","resourceURI":"http://gateway.marvel.com/v1/public/series/2005","urls":[{"type":"detail","url":"http://marvel.com/comics/series/2005/deadpool_1997_-_2002?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1997,"endYear":2002,"rating":"","type":"","modified":"2017-05-30T17:08:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/03/5130f646465e3","extension":"jpg"},"creators":{"available":104,"collectionURI":"http://gateway.marvel.com/v1/public/series/2005/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2522","name":"Kf","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4156","name":"Nf","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4117","name":"Ni","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4155","name":"Pt","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3672","name":"Sharpe","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6721","name":"Sharpefont","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4139","name":"Matthew + Paine","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4136","name":"Soto","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4123","name":"Wong","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4135","name":"Shannon + Blanchard","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4149","name":"Norton","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1","name":"Tim + Bradstreet","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4138","name":"Shelander","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4064","name":"Steve + Behling","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2975","name":"David + Brewer","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13759","name":"James + Calafiore","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim + Calafiore","role":"penciler"}],"returned":20},"characters":{"available":56,"collectionURI":"http://gateway.marvel.com/v1/public/series/2005/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009148","name":"Absorbing + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009596","name":"Banshee + (Theresa Rourke)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009172","name":"Batroc + the Leaper"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010843","name":"Big + Bertha"},{"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/1009214","name":"Cable"},{"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/1009245","name":"Constrictor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009247","name":"Corsair"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009267","name":"Dazzler"},{"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/1011040","name":"Dinah + Soar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor + Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010879","name":"Doorman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011072","name":"Edwin + Jarvis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010863","name":"Flatman"}],"returned":20},"stories":{"available":171,"collectionURI":"http://gateway.marvel.com/v1/public/series/2005/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24515","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24516","name":"Paradigm + Lost","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24518","name":"Deadpool + (1997) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24519","name":"Behind + the Scenes","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24520","name":"Deadlines","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24521","name":"What''s + Next for the X-Generation","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24523","name":"Deadpool + (1997) #10","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24525","name":"Deadpool + #11 Behind the Scenes","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24527","name":"Deadpool + (1997) #11","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24529","name":"In + the Hands of the Hunter","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24531","name":"Deadpool + (1997) #12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24534","name":"Deadpool + (1997) #13","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24535","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24536","name":"Deadpool + (1997) #14","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24537","name":"Deadpool","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24538","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24539","name":"Deadpool + (1997) #15","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24540","name":"Deadpool","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24541","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24542","name":"Deadpool + (1997) #16","type":"interiorStory"}],"returned":20},"comics":{"available":71,"collectionURI":"http://gateway.marvel.com/v1/public/series/2005/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8461","name":"Deadpool + (1997) #-1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47243","name":"Deadpool + (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8462","name":"Deadpool + (1997) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8473","name":"Deadpool + (1997) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8484","name":"Deadpool + (1997) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8495","name":"Deadpool + (1997) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8506","name":"Deadpool + (1997) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8517","name":"Deadpool + (1997) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8528","name":"Deadpool + (1997) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8529","name":"Deadpool + (1997) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8530","name":"Deadpool + (1997) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8463","name":"Deadpool + (1997) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8464","name":"Deadpool + (1997) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8465","name":"Deadpool + (1997) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8466","name":"Deadpool + (1997) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8467","name":"Deadpool + (1997) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8468","name":"Deadpool + (1997) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8469","name":"Deadpool + (1997) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8470","name":"Deadpool + (1997) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8471","name":"Deadpool + (1997) #18"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/2005/events","items":[],"returned":0},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/series/5701","name":"Deadpool + (2008 - 2012)"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2004","name":"Deadpool + (1994)"}},{"id":2045,"title":"Marvel Premiere (1972 - 1981)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","urls":[{"type":"detail","url":"http://marvel.com/comics/series/2045/marvel_premiere_1972_-_1981?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1972,"endYear":1981,"rating":"","type":"","modified":"2018-03-01T13:17:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/40/5a98437953d4e","extension":"jpg"},"creators":{"available":113,"collectionURI":"http://gateway.marvel.com/v1/public/series/2045/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1186","name":"Jack + Abel","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/125","name":"Frank + Brunner","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1394","name":"Bob + Budiansky","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/46","name":"Dave + Cockrum","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1212","name":"Dan + Adkins","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11063","name":"Terry + Kevin Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3109","name":"Crusty + Bunkers","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6257","name":"Ernie + Chan","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/808","name":"Howard + Chaykin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1523","name":"Vince + Colletta","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1865","name":"Diana + Albers","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/14030","name":"Terry + Austin","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1288","name":"Jerry + Bingham","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1185","name":"Pat + Broderick","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/105","name":"Sal + Buscema","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/106","name":"Bob + Brown","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice + Chiang","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1767","name":"Janice + Cohen","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"}],"returned":20},"characters":{"available":26,"collectionURI":"http://gateway.marvel.com/v1/public/series/2045/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","name":"3-D + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam + Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010801","name":"Ant-Man + (Scott Lang)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","name":"Black + Panther"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010676","name":"Colleen + Wing"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor + Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010368","name":"Dreadnoughts"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009284","name":"Dum + Dum Dugan"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009297","name":"Falcon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009343","name":"Hercules"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011024","name":"Invaders"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009367","name":"Iron + Fist (Danny Rand)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010811","name":"Man-Wolf"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010682","name":"Misty + Knight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010873","name":"Paladin"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011035","name":"Satana"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010733","name":"Star-Lord + (Peter Quill)"}],"returned":20},"stories":{"available":201,"collectionURI":"http://gateway.marvel.com/v1/public/series/2045/stories","items":[{"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/19889","name":"Cover + #19889","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19890","name":"Finally, + Shuma-Gorath!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19891","name":"Cover + #19891","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19892","name":"Homecoming!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19893","name":"The + Origin of Dr. Strange","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19894","name":"The + Many Traps of Baron Mordo","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19895","name":"No + man walks twice thru the Doorway of Doom!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19896","name":"Portal + to the Past!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19897","name":"Cover + #19897","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19898","name":"Time + Doom","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19899","name":"Cover + #19899","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19900","name":"Sise-Neg + Genesis","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19901","name":"Cover + #19901","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19902","name":"The + Fury of Iron Fist!","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/19913","name":"[untitled]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19926","name":"Cover + #19926","type":"cover"}],"returned":20},"comics":{"available":61,"collectionURI":"http://gateway.marvel.com/v1/public/series/2045/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10195","name":"Marvel + Premiere (1972) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10206","name":"Marvel + Premiere (1972) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10217","name":"Marvel + Premiere (1972) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10228","name":"Marvel + Premiere (1972) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10239","name":"Marvel + Premiere (1972) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10250","name":"Marvel + Premiere (1972) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10253","name":"Marvel + Premiere (1972) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10254","name":"Marvel + Premiere (1972) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10255","name":"Marvel + Premiere (1972) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10196","name":"Marvel + Premiere (1972) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10197","name":"Marvel + Premiere (1972) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10198","name":"Marvel + Premiere (1972) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10199","name":"Marvel + Premiere (1972) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10200","name":"Marvel + Premiere (1972) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10201","name":"Marvel + Premiere (1972) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10202","name":"Marvel + Premiere (1972) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10203","name":"Marvel + Premiere (1972) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10204","name":"Marvel + Premiere (1972) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10205","name":"Marvel + Premiere (1972) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10207","name":"Marvel + Premiere (1972) #20"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/2045/events","items":[],"returned":0},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_a_character_s_stories_by_ID.yml b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_stories_by_ID.yml new file mode 100644 index 0000000..13eea44 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_a_character_s_stories_by_ID.yml @@ -0,0 +1,49 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters/1009178/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - c511587fd02cd4a9b6e059a37e2b19fc0ac25f69 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:12:07 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"c511587fd02cd4a9b6e059a37e2b19fc0ac25f69","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":28072,"title":"Fresh + Upstart","description":"X-Men Gold Team is formed (X-Men Blue appear in the + new X-Men #1); Trevor Fitzroy of the Upstarts sends Sentinels to slaughter + Donald Pierce and the Reavers as well as the White Queen and the Hellions + (and doesn''t do a shabby job of taking out both).","resourceURI":"http://gateway.marvel.com/v1/public/stories/28072","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28072/creators","items":[],"returned":0},"characters":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28072/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","name":"Archangel"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009178","name":"Beef"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009291","name":"Empath"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009340","name":"Hellfire + Club"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009373","name":"Jetstream"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009393","name":"Lady + Deathstrike"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009502","name":"Pretty + Boy"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009647","name":"Tarot"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":12},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28072/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28072/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13822","name":"Uncanny + X-Men (1963) #281"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28072/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13822","name":"Uncanny + X-Men (1963) #281"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_characters.yml b/spec/vcr/Harkness_CharacterResource/gets_characters.yml new file mode 100644 index 0000000..1020db3 --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_characters.yml @@ -0,0 +1,730 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 6758d4aacba7ae27c7bfe31270a6e4d5502380ae + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 Mar 2023 03:08:23 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"6758d4aacba7ae27c7bfe31270a6e4d5502380ae","data":{"offset":0,"limit":20,"total":1562,"count":20,"results":[{"id":1011334,"name":"3-D + Man","description":"","modified":"2014-04-29T14:18:17-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/e0/535fecbbb9784","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011334","comics":{"available":12,"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/8500","name":"Deadpool + (1997) #44"},{"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":12},"series":{"available":3,"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/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2045","name":"Marvel + Premiere (1972 - 1981)"}],"returned":3},"stories":{"available":21,"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/47184","name":"AVENGERS: + THE INITIATIVE (2007) #14","type":"cover"},{"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/47498","name":"AVENGERS: + THE INITIATIVE (2007) #15","type":"cover"},{"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/48361","name":"AVENGERS: + THE INITIATIVE (2007) #17","type":"cover"},{"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/49103","name":"AVENGERS: + THE INITIATIVE (2007) #18","type":"cover"},{"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"}],"returned":20},"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/characters/74/3-d_man?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/3-D_Man_(Chandler)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011334/3-d_man?utm_campaign=apiRef&utm_source=abcd"}]},{"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":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47176","name":"FREE + COMIC BOOK DAY 2013 1 (2013) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40632","name":"Hulk + (2008) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40630","name":"Hulk + (2008) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40628","name":"Hulk + (2008) #55"}],"returned":4},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/17765","name":"FREE + COMIC BOOK DAY 2013 1 (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"}],"returned":2},"stories":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92078","name":"Hulk + (2008) #55","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92079","name":"Interior + #92079","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92082","name":"Hulk + (2008) #54","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92083","name":"Interior + #92083","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92086","name":"Hulk + (2008) #53","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92087","name":"Interior + #92087","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105929","name":"cover + from Free Comic Book Day 2013 (Avengers/Hulk) (2013) #1","type":"cover"}],"returned":7},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017100/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/76/a-bomb?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1017100/a-bomb_has?utm_campaign=apiRef&utm_source=abcd"}]},{"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":53,"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/4214","name":"Avengers + and Power Pack Assemble! (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63217","name":"Avengers + and Power Pack (2017) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63218","name":"Avengers + and Power Pack (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63219","name":"Avengers + and Power Pack (2017) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63220","name":"Avengers + and Power Pack (2017) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64790","name":"Avengers + by Brian Michael Bendis: The Complete Collection Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103371","name":"Avengers + Unlimited Infinity Comic (2022) #17"},{"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/7513","name":"Captain + America (1968) #132"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7514","name":"Captain + America (1968) #133"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65466","name":"Captain + America by Mark Waid, Ron Garney & Andy Kubert (Hardcover)"},{"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 (2010) #606 (VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46168","name":"Indestructible + Hulk (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43944","name":"Iron + Man (2012) #1"}],"returned":20},"series":{"available":36,"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/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23123","name":"Avengers + and Power Pack (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1046","name":"Avengers + and Power Pack Assemble! (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23600","name":"Avengers + by Brian Michael Bendis: The Complete Collection Vol. 2 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35600","name":"Avengers + Unlimited Infinity Comic (2022 - 2023)"},{"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/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1997","name":"Captain + America (1998 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23810","name":"Captain + America by Mark Waid, Ron Garney & Andy Kubert (2017)"},{"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 (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16583","name":"Indestructible + Hulk (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16593","name":"Iron + Man (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron + Man (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23915","name":"Iron + Man Epic Collection: Doom (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9718","name":"Marvel + Adventures Super Heroes (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/189","name":"Marvel + Masterworks: Captain America Vol. 1 - 2nd Edition (2003)"}],"returned":20},"stories":{"available":57,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009144/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5800","name":"Avengers + and Power Pack Assemble! (2006) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5801","name":"2 + of 4 - 4XLS","type":"interiorStory"},{"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/17518","name":"Captain + America (1968) #132","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17519","name":"The + Fearful Secret of Bucky Barnes","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17520","name":"Captain + America (1968) #133","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17521","name":"Madness + In the Slums","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28233","name":"In + Sin Airy X","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/characters/77/aim.?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/A.I.M.?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009144/aim.?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010699,"name":"Aaron + Stack","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/1010699","comics":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010699/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40776","name":"Dark + Avengers (2012) #177"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40773","name":"Dark + Avengers (2012) #179"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40774","name":"Dark + Avengers (2012) #180"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40778","name":"Dark + Avengers (2012) #181"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40787","name":"Dark + Avengers (2012) #182"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40786","name":"Dark + Avengers (2012) #183"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38073","name":"Hulk + (2008) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11910","name":"Universe + X (2000) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11911","name":"Universe + X (2000) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11912","name":"Universe + X (2000) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11913","name":"Universe + X (2000) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11903","name":"Universe + X (2000) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11904","name":"Universe + X (2000) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11905","name":"Universe + X (2000) #12"}],"returned":14},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010699/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/789","name":"Dark + Avengers (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2085","name":"Universe + X (2000 - 2001)"}],"returned":3},"stories":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010699/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25634","name":"Universe + X (2000) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25635","name":"Interior + #25635","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25637","name":"Universe + X (2000) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25638","name":"Interior + #25638","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25647","name":"Universe + X (2000) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25648","name":"Interior + #25648","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25649","name":"Universe + X (2000) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25650","name":"Interior + #25650","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25651","name":"Universe + X (2000) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25652","name":"Interior + #25652","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25653","name":"Universe + X (2000) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25654","name":"Interior + #25654","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67100","name":"Universe + X (2000) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/89190","name":"Hulk + (2008) #43","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90002","name":"Interior + #90002","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92370","name":"Dark + Avengers (2012) #179","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92371","name":"Interior + #92371","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92372","name":"Dark + Avengers (2012) #180","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92373","name":"Interior + #92373","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92376","name":"Dark + Avengers (2012) #177","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010699/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/2809/aaron_stack?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010699/aaron_stack?utm_campaign=apiRef&utm_source=abcd"}]},{"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":55,"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 TPB [NEW PRINTING] (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20863","name":"Hulk + (2008) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2499","name":"Hulk: + Destruction (2005) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14424","name":"Hulk + (1999) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14425","name":"Hulk + (1999) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14428","name":"Hulk + (1999) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14450","name":"Hulk + (1999) #50"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14451","name":"Hulk + (1999) #51"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14453","name":"Hulk + (1999) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14454","name":"Hulk + (1999) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8948","name":"Incredible + Hulk (1962) #137"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8982","name":"Incredible + Hulk (1962) #171"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9005","name":"Incredible + Hulk (1962) #194"},{"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/9011","name":"Incredible + Hulk (1962) #200"}],"returned":20},"series":{"available":27,"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 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/465","name":"Hulk + (1999 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/924","name":"Hulk: + Destruction (2005)"},{"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 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22424","name":"Incredible + Hulk Epic Collection: The Hulk Must Die (2017)"},{"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 (2010 - 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 DIGEST (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 HC (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32108","name":"Maestro: + World War M (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21675","name":"Marvel + Cinematic Universe Guidebook: The Avengers Initiative (2017)"}],"returned":20},"stories":{"available":65,"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":"Irredeemable + Ant-Man (2006) #1","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/18488","name":"Incredible + Hulk (1962) #171","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18489","name":"Revenge","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18534","name":"Incredible + Hulk (1962) #194","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18535","name":"The + Day of the Locust!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18536","name":"Incredible + Hulk (1962) #195","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18537","name":"Warfare + In Wonderland!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18538","name":"Incredible + Hulk (1962) #196","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18539","name":"The + Abomination Proclamation!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18546","name":"Incredible + Hulk (1962) #200","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18547","name":"An + Intruder In the Mind!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18776","name":"Cover + #18776","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18877","name":"Incredible + Hulk (1962) #364","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18878","name":"Countdown + Part 4: The Abomination","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18881","name":"Incredible + Hulk (1962) #366","type":"cover"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009146/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/81/abomination?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Abomination?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009146/abomination_emil_blonsky?utm_campaign=apiRef&utm_source=abcd"}]},{"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":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40638","name":"Hulk + (2008) #50"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15717","name":"Ultimate + X-Men (2001) #26"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/474","name":"Ultimate + X-Men (2001 - 2009)"}],"returned":2},"stories":{"available":3,"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"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92098","name":"Hulk + (2008) #50","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92099","name":"Interior + #92099","type":"interiorStory"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1016823/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/81/abomination?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1016823/abomination_ultimate?utm_campaign=apiRef&utm_source=abcd"}]},{"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":96,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43507","name":"A+X + (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7045","name":"Avengers + (1963) #183"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7046","name":"Avengers + (1963) #184"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7142","name":"Avengers + (1963) #270"},{"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/17776","name":"Avengers + Annual (1967) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63662","name":"Black + Bolt (2017) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64278","name":"Black + Bolt (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66533","name":"Black + Bolt (2017) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65327","name":"Black + Bolt Vol. 1: Hard Time (Trade Paperback)"},{"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/8499","name":"Deadpool + (1997) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15541","name":"Fantastic + Four (1998) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13151","name":"Fantastic + Four (1961) #330"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41433","name":"Fear + Itself (2010) #2 (3rd Printing Variant)"}],"returned":20},"series":{"available":48,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"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/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23121","name":"Black + Bolt (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23778","name":"Black + Bolt Vol. 1: Hard Time (2017)"},{"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/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"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/31372","name":"Gamma + Flight (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20084","name":"Heroes + for Hire (1997 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/465","name":"Hulk + (1999 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20552","name":"Illuminati + (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24278","name":"Immortal + Hulk (2018 - 2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24891","name":"Immortal + Hulk Vol. 2: The Green Door (2019)"}],"returned":20},"stories":{"available":109,"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/7866","name":"Punisher + War Journal (2006) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10997","name":"Journey + Into Mystery (1952) #114","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/10998","name":"The + Stronger I Am, the Sooner I Die","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11000","name":"Journey + Into Mystery (1952) #115","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11001","name":"The + Vengeance of the Thunder God","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11022","name":"Journey + Into Mystery (1952) #120","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11023","name":"With + My Hammer In Hand","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11025","name":"Journey + Into Mystery (1952) #121","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11026","name":"The + Power! The Passion! The Pride!","type":"interiorStory"},{"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/11029","name":"Where + Mortals Fear To Tread!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11031","name":"Journey + Into Mystery (1952) #123","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/11032","name":"While + a Universe Trembles","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12951","name":"Fantastic + Four (1961) #330","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12952","name":"Good + Dreams!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14628","name":"Avengers + (1963) #183","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14630","name":"Avengers + (1963) #184","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14823","name":"Avengers + (1963) #270","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16688","name":"Thor + (1966) #206","type":"cover"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009148/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"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/273","name":"Siege"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/characters/84/absorbing_man?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Absorbing_Man?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009148/absorbing_man?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009149,"name":"Abyss","description":"","modified":"2014-04-29T14:10:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/30/535feab462a64","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 (1995) #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 (1995)"},{"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/characters/85/abyss?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Abyss_(alien)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009149/abyss?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010903,"name":"Abyss + (Age of Apocalypse)","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/4c00358ec7548","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18099","name":"Weapon + X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":3},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon + X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"},{"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":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26280","name":"X-Men: + Alpha (1994) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38448","name":"X-Facts","type":""}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/85/abyss?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Abyss_(Age_of_Apocalypse)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010903/abyss_age_of_apocalypse?utm_campaign=apiRef&utm_source=abcd"}]},{"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/characters/2902/adam_destine?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Destine,_Adam?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011266/adam_destine?utm_campaign=apiRef&utm_source=abcd"}]},{"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":188,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62151","name":"All-New + Guardians of the Galaxy Vol. 3: Infinity Quest (Trade Paperback)"},{"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 HC (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/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 TPB [NEW PRINTING] (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/25305","name":"Guardians + of the Galaxy (2008) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65547","name":"All-New + Guardians of the Galaxy (2017) #150"}],"returned":20},"series":{"available":82,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/23058","name":"All-New + Guardians of the Galaxy (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22778","name":"All-New + Guardians of the Galaxy Vol. 3: Infinity Quest (2018)"},{"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 - 1999)"},{"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 HC (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 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4885","name":"Guardians + of the Galaxy (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27554","name":"Guardians + Of The Galaxy Annual (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26496","name":"Guardians + Of The Galaxy Vol. 2: Faithless (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22422","name":"GUARDIANS + OF THE GALAXY: ROAD TO ANNIHILATION VOL. 2 TPB (2017)"},{"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 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26307","name":"Infinity + By Starlin & Hickman (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24050","name":"Infinity + Countdown (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24300","name":"Infinity + Countdown Prime (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23991","name":"Infinity + Countdown: Adam Warlock (2018)"}],"returned":20},"stories":{"available":217,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010354/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1412","name":"Cover + #1412","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1602","name":"Cover + #1602","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1800","name":"Cover + #1800","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1842","name":"Cover + #1842","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3758","name":"WARLOCK + (2004) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3760","name":"WARLOCK + (2004) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3762","name":"WARLOCK + (2004) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3764","name":"WARLOCK + (2004) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12568","name":"Fantastic + Four (1961) #172","type":"cover"},{"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":"Incredible + Hulk (1962) #177","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"}],"returned":20},"events":{"available":8,"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/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":8},"urls":[{"type":"detail","url":"http://marvel.com/characters/2854/adam_warlock?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Warlock,_Adam?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010354/adam_warlock?utm_campaign=apiRef&utm_source=abcd"}]},{"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/characters/95/aegis?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Aegis_%28Trey_Rollins%29?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010846/aegis_trey_rollins?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1017851,"name":"Aero + (Aero)","description":"","modified":"2021-08-27T17:52:34-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/1017851","comics":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017851/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76349","name":"Aero + (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76350","name":"Aero + (2019) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76351","name":"Aero + (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76352","name":"Aero + (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76353","name":"Aero + (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76354","name":"Aero + (2019) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76355","name":"Aero + (2019) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76356","name":"Aero + (2019) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76357","name":"Aero + (2019) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76358","name":"Aero + (2019) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76359","name":"Aero + (2019) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76360","name":"Aero + (2019) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77001","name":"Agents + of Atlas (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77003","name":"Agents + of Atlas (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77005","name":"Agents + of Atlas (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/83989","name":"Atlantis + Attacks (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/83993","name":"Atlantis + Attacks (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/83994","name":"Atlantis + Attacks (2020) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/83995","name":"Atlantis + Attacks (2020) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/83996","name":"Atlantis + Attacks (2020) #5"}],"returned":20},"series":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017851/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/27392","name":"Aero + (2019 - 2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27624","name":"Agents + of Atlas (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29600","name":"Atlantis + Attacks (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31376","name":"King + In Black: Black Knight (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28381","name":"The + Marvels (2021 - Present)"}],"returned":5},"stories":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017851/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169570","name":"cover + from Aero (2019) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169572","name":"cover + from Aero (2019) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169574","name":"cover + from Aero (2019) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169576","name":"cover + from Aero (2019) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169578","name":"cover + from Aero (2019) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169580","name":"cover + from Aero (2019) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169582","name":"cover + from Aero (2019) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169584","name":"cover + from Aero (2019) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169586","name":"cover + from Aero (2019) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169588","name":"cover + from Aero (2019) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169590","name":"cover + from Aero (2019) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/169592","name":"cover + from Aero (2019) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/170874","name":"cover + from New Agents of Atlas (2019) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/170878","name":"cover + from New Agents of Atlas (2019) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/170882","name":"cover + from New Agents of Atlas (2019) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/178282","name":"cover + from The Marvels (2029) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/178288","name":"cover + from The Marvels (2029) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/178290","name":"cover + from The Marvels (2029) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/178294","name":"cover + from The Marvels (2029) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/178296","name":"cover + from The Marvels (2029) #8","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017851/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1017851/aero_aero?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1017851/aero_aero?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1012717,"name":"Agatha + Harkness","description":"","modified":"2021-08-06T11:30:56-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/4ce5a9bf70e19","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1012717","comics":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1012717/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17751","name":"Avengers + (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17756","name":"Avengers + (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17757","name":"Avengers + (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17758","name":"Avengers + (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17762","name":"Avengers + (1996) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21358","name":"Avengers + Fairy Tales (2008) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77235","name":"Captain + America (2018) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95785","name":"Captain + Marvel (2019) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95788","name":"Captain + Marvel (2019) #42"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13304","name":"Fantastic + Four (1961) #94"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54974","name":"Scarlet + Witch (1994) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57094","name":"Scarlet + Witch (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54977","name":"Scarlet + Witch (1994) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54978","name":"Scarlet + Witch (1994) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60028","name":"Scarlet + Witch (2015) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21182","name":"Ultimate + Fantastic Four (2003) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21332","name":"Ultimate + Fantastic Four (2003) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21510","name":"Ultimate + Fantastic Four (2003) #56"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18460","name":"Vision + and the Scarlet Witch (1985) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18458","name":"Vision + and the Scarlet Witch (1985) #12"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1012717/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3621","name":"Avengers + (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3971","name":"Avengers + Fairy Tales (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24503","name":"Captain + America (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26673","name":"Captain + Marvel (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20854","name":"Scarlet + Witch (2015 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20338","name":"Scarlet + Witch (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/702","name":"Ultimate + Fantastic Four (2003 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3655","name":"Vision + and the Scarlet Witch (1985 - 1986)"}],"returned":9},"stories":{"available":25,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1012717/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13503","name":"The + Return of the Frightful Four","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37673","name":"Avengers + (1996) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37688","name":"Avengers + (1996) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37690","name":"Avengers + (1996) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37693","name":"Avengers + (1996) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37701","name":"Avengers + (1996) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39320","name":"VISION + AND THE SCARLET WITCH (1985) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39325","name":"Ancestors","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/46790","name":"Ultimate + Fantastic Four (2003) #54","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/46791","name":"Namor + War 1 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47112","name":"Ultimate + Fantastic Four (2003) #55","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47113","name":"Namor + War 2 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47169","name":"Avengers + Fairy Tales (2008) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47170","name":"The + Wizard of Oz","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47425","name":"Ultimate + Fantastic Four (2003) #56","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47426","name":"3 + of 4 - Salem Seven","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/125005","name":"cover + from Scarlet Witch (2016) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/130587","name":"cover + from Scarlet Witch (2015) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/135317","name":"interior + to Scarlet Witch (1994) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/135321","name":"interior + to Scarlet Witch (1994) #3","type":"interiorStory"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1012717/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1012717/agatha_harkness?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Agatha%20Harkness?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1012717/agatha_harkness?utm_campaign=apiRef&utm_source=abcd"}]},{"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":30,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6120","name":"Astonishing + X-Men (2004) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6309","name":"Astonishing + X-Men (2004) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16119","name":"Astonishing + X-Men (2004) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17353","name":"Astonishing + X-Men (2004) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24503","name":"Astonishing + X-Men (2004) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24504","name":"Astonishing + X-Men (2004) #33"},{"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/45950","name":"Cable + and X-Force (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39890","name":"Heralds + (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90340","name":"S.W.O.R.D. + (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90341","name":"S.W.O.R.D. + (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26232","name":"S.W.O.R.D. + (2009) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90342","name":"S.W.O.R.D. + (2020) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26233","name":"S.W.O.R.D. + (2009) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90343","name":"S.W.O.R.D. + (2020) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26234","name":"S.W.O.R.D. + (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30518","name":"S.W.O.R.D. + (2009) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90344","name":"S.W.O.R.D. + (2020) #5"}],"returned":20},"series":{"available":7,"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 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16907","name":"Cable + and X-Force (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13065","name":"Heralds + (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31083","name":"S.W.O.R.D. + (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8233","name":"S.W.O.R.D. + (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22551","name":"The + Mighty Captain Marvel (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32962","name":"X-Men + Red (2022 - Present)"}],"returned":7},"stories":{"available":34,"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/7670","name":"ASTONISHING + X-MEN (2004) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8144","name":"ASTONISHING + X-MEN (2004) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32919","name":"ASTONISHING + X-MEN (2004) #23","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36374","name":"ASTONISHING + X-MEN (2004) #24","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54039","name":"ASTONISHING + X-MEN (2004) #32","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54041","name":"ASTONISHING + X-MEN (2004) #33","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57763","name":"S.W.O.R.D. + (2009) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57765","name":"S.W.O.R.D. + (2009) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57767","name":"S.W.O.R.D. + (2009) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69862","name":"S.W.O.R.D. + (2009) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/89830","name":"ASTONISHING + X-MEN (2004) #38","type":"cover"},{"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"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90944","name":"ASTONISHING + X-MEN (2004) #40","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103418","name":"Cable + and X-Force (2012) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103419","name":"story + from Cable and X-Force (2012) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133289","name":"cover + from Captain Marvel (2016) #5","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011297/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/100/agent_brand?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Agent_Brand?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011297/agent_brand?utm_campaign=apiRef&utm_source=abcd"}]},{"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":18,"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/17714","name":"Agent + X (2002) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17715","name":"Agent + X (2002) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17716","name":"Agent + X (2002) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17703","name":"Agent + X (2002) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17704","name":"Agent + X (2002) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17705","name":"Agent + X (2002) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17706","name":"Agent + X (2002) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17707","name":"Agent + X (2002) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/394","name":"Agent + X (2002) #15"},{"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":18},"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":23,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1135","name":"AGENT + X (2002) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2484","name":"CABLE + & DEADPOOL (2004) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37514","name":"AGENT + X (2002) #1","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/37516","name":"AGENT + X (2002) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37518","name":"AGENT + X (2002) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37521","name":"AGENT + X (2002) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37523","name":"AGENT + X (2002) #14","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37525","name":"AGENT + X (2002) #2","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":"AGENT + X (2002) #3","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":"AGENT + X (2002) #4","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":"AGENT + X (2002) #5","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":"AGENT + X (2002) #6","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/37535","name":"AGENT + X (2002) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67703","name":"AGENT + X (2002) #12","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011031/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/101/agent_x?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Agent_X_(Nijo)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011031/agent_x_nijo?utm_campaign=apiRef&utm_source=abcd"}]},{"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":29,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100853","name":"Life + of Wolverine Infinity Comic (2022) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18082","name":"Weapon + X (2002) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18092","name":"Weapon + X (2002) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18074","name":"Weapon + X (2002) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/246","name":"Weapon + X (2002) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2204","name":"Weapon + X: Days of Future Now (2005) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2324","name":"Weapon + X: Days of Future Now (2005) #2"},{"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/2439","name":"Weapon + X: Days of Future Now (2005) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3016","name":"Weapon + X: Days of Future Now (2005) #5"},{"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/18408","name":"Weapon + X: The Draft – Agent Zero (2002) #1"},{"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"}],"returned":20},"series":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/34445","name":"Life + of Wolverine Infinity Comic (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"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/3649","name":"Weapon + X: The Draft – Agent Zero (2002)"},{"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 TPB (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 - 2003)"}],"returned":10},"stories":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009150/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1131","name":"WEAPON + X (2002) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4603","name":"1 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4605","name":"2 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4606","name":"3 + of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4608","name":"4 + of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4610","name":"5 + 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"}],"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/characters/102/agent_zero?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Agent_Zero?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009150/agent_zero?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1011198,"name":"Agents + of Atlas","description":"","modified":"2016-02-03T10:25:22-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":45,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4801","name":"Agents + of Atlas (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77001","name":"Agents + of Atlas (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23659","name":"Agents + of Atlas (2009) #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/5089","name":"Agents + of Atlas (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23825","name":"Agents + of Atlas (2009) #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/5241","name":"Agents + of Atlas (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24015","name":"Agents + of Atlas (2009) #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/5404","name":"Agents + of Atlas (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24219","name":"Agents + of Atlas (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5665","name":"Agents + of Atlas (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24221","name":"Agents + of Atlas (2009) #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/24360","name":"Agents + of Atlas (2009) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5842","name":"Agents + of Atlas (2006) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24361","name":"Agents + of Atlas (2009) #7"}],"returned":20},"series":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/27624","name":"Agents + of Atlas (2019)"},{"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 PREMIERE HC (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24134","name":"Agents + of Atlas: The Complete Collection Vol. 1 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29600","name":"Atlantis + Attacks (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9782","name":"Atlas + (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9181","name":"Avengers + Vs. Atlas (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6415","name":"Dark + Reign: New Nation (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27620","name":"Incoming! + (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27505","name":"War + of the Realms: New Agents of Atlas (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27374","name":"War + Of The Realms: New Agents Of Atlas (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22365","name":"Wolverine: + Prehistory (2017)"}],"returned":13},"stories":{"available":52,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011198/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6008","name":"1 + of 6 - 6 XLS-","type":"cover"},{"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/6010","name":"2 + of 6 - 6 XLS -","type":"cover"},{"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/6012","name":"3 + of 6 - 6 XLS -","type":"cover"},{"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/6014","name":"4 + of 6 - 6 XLS -","type":"cover"},{"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/6016","name":"5 + of 6 - 6 XLS -","type":"cover"},{"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/6018","name":"5 + of 6 - Story A - 6XLS","type":"cover"},{"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/51050","name":"1 + of 1","type":"cover"},{"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"}],"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Agents_of_Atlas?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011198/agents_of_atlas?utm_campaign=apiRef&utm_source=abcd"}]},{"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/characters/105/aginar?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Aginar?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011175/aginar?utm_campaign=apiRef&utm_source=abcd"}]},{"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":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4108","name":"Annihilation: + Silver Surfer (2006) #1"},{"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":4},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1078","name":"Annihilation: + Silver Surfer (2006)"},{"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":3},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/stories","items":[{"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/34082","name":"Magical + Mystery Tour","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/34085","name":"Matters + of the Heart","type":"interiorStory"}],"returned":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011136/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/109/air-walker?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Air-Walker_(Gabriel_Lan)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011136/air-walker_gabriel_lan?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CharacterResource/gets_characters_with_params.yml b/spec/vcr/Harkness_CharacterResource/gets_characters_with_params.yml new file mode 100644 index 0000000..fa796bb --- /dev/null +++ b/spec/vcr/Harkness_CharacterResource/gets_characters_with_params.yml @@ -0,0 +1,38 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&nameStartsWith=Spider&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 8dc7e68f1202b1b6067ea9f2149848581293da8b + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 Mar 2023 03:15:35 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"8dc7e68f1202b1b6067ea9f2149848581293da8b","data":{"offset":0,"limit":1,"total":21,"count":1,"results":[{"id":1010727,"name":"Spider-dok","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/1010727","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010727/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010727/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010727/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010727/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/2170/spider-dok?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010727/spider-dok?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_a_comic_by_ID.yml b/spec/vcr/Harkness_ComicResource/gets_a_comic_by_ID.yml new file mode 100644 index 0000000..d7726ff --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_a_comic_by_ID.yml @@ -0,0 +1,56 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics/1332?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 8465730a557adc2fed3b35da98554a4f13a8bf40 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 15:24:47 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"8465730a557adc2fed3b35da98554a4f13a8bf40","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":1332,"digitalId":0,"title":"X-Men: + Days of Future Past (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"\"Re-live + the legendary first journey into the dystopian future of 2013 - where Sentinels + stalk the Earth, and the X-Men are humanity''s only hope...until they die! + Also featuring the first appearance of Alpha Flight, the return of the Wendigo, + the history of the X-Men from Cyclops himself...and a demon for Christmas!? + \"","modified":"2017-02-28T14:52:22-0500","isbn":"0-7851-1560-9","upc":"5960611560-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":144,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\"Re-live + the legendary first journey into the dystopian future of 2013 - where Sentinels + stalk the Earth, and the X-Men are humanity''s only hope...until they die! + Also featuring the first appearance of Alpha Flight, the return of the Wendigo, + the history of the X-Men from Cyclops himself...and a demon for Christmas!? + \""}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1332/x-men_days_of_future_past_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1327","name":"X-Men: + Days of Future Past (2004)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"}],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/58b5cfb6d5239","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/58b5cfb6d5239","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/b0/4bc66463ef7f0","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/creators","items":[],"returned":0},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/characters","items":[{"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/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","name":"Pyro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":10},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","name":"Mind + Out of Time!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65738","name":"X-MEN: + DAYS OF FUTURE PAST TPB 0 cover","type":"cover"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_a_comic_s_characters_by_ID.yml b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_characters_by_ID.yml new file mode 100644 index 0000000..2f0721b --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_characters_by_ID.yml @@ -0,0 +1,760 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics/1332/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 70ea7192bd9aeaea13f6cfc6875d2a209763fc0c + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 15:36:59 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"70ea7192bd9aeaea13f6cfc6875d2a209763fc0c","data":{"offset":0,"limit":20,"total":10,"count":10,"results":[{"id":1009159,"name":"Archangel","description":"","modified":"2013-10-18T12:48:24-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/03/526165ed93180","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","comics":{"available":561,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/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/12555","name":"All-Winners + Comics (1941) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12651","name":"Alpha + Flight (1983) #111"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51178","name":"Archangel + (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63833","name":"Astonishing + X-Men (2017) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64883","name":"Astonishing + X-Men (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65263","name":"Astonishing + X-Men (2017) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66265","name":"Astonishing + X-Men (2017) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66481","name":"Astonishing + X-Men (2017) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67715","name":"Astonishing + X-Men (2017) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40803","name":"Astonishing + X-Men (2004) #51"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71373","name":"Astonishing + X-Men Annual (2018) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66299","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17509","name":"Avengers + (1998) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17546","name":"Avengers + (1998) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4461","name":"Avengers + Assemble Vol. 3 (Hardcover)"},{"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/23971","name":"Cable + (2008) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23972","name":"Cable + (2008) #13 (MW, 50/50 Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24171","name":"Cable + (2008) #14"}],"returned":20},"series":{"available":138,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/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/2114","name":"All-Winners + Comics (1941 - 1947)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19239","name":"Archangel + (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26006","name":"Astonishing + X-Men Annual (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24018","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers + Vol. 1: World Trust (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3626","name":"Bishop + (1994 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8","name":"Call, + the Vol. 2: The Precinct (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain + America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/690","name":"Captain + Marvel (2000 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/175","name":"Captain + Marvel Vol. 1: Nothing to Lose (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/105","name":"Captain + Marvel Vol. I (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2001","name":"Champions + (1975 - 1978)"}],"returned":20},"stories":{"available":622,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1745","name":"UNCANNY + X-MEN (1963) #433","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1776","name":"UNCANNY + X-MEN (1963) #434","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2071","name":"UNCANNY + X-MEN (1963) #438","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2293","name":"UNCANNY + X-MEN (1963) #432","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3261","name":"2 + of 2 - Save the Life of My Child","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6222","name":"Cover + #6222","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8823","name":"[The + Six Big Men]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9053","name":"Cover + #9053","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9059","name":"The + Case of the Mad Gargoyle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9719","name":"The + House of Horror","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9724","name":"Killer''s + Last Stand","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9729","name":"The + Case of the Beggar Prince","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9735","name":"Charity + Bazaar Murders","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9741","name":"The + Devil''s Imposter","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9747","name":"Tell-Tale + Cigarette","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9753","name":"The + Parrot Murder Secret","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9758","name":"Mystery + of Horror House","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9763","name":"Adventure + of the Generous Fence","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9770","name":"Shadow + of the Noose","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9776","name":"The + Two-Faced Corpse","type":"interiorStory"}],"returned":20},"events":{"available":19,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/334","name":"Inhumans + Vs. X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":19},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009159/archangel?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Angel_(Warren_Worthington_III)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009159/archangel?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009164,"name":"Avalanche","description":"","modified":"2010-11-05T14:30:34-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/10/4c0042010d383","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009164","comics":{"available":47,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009164/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/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7467","name":"Cable + (1993) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78389","name":"Excalibur + (2019) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91508","name":"Excalibur + (2019) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/126","name":"New + Mutants (2003) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5799","name":"New + Mutants Classic Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53685","name":"Quicksilver + (1997) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43339","name":"Uncanny + Avengers (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13718","name":"Uncanny + X-Men (1963) #177"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13719","name":"Uncanny + X-Men (1963) #178"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13740","name":"Uncanny + X-Men (1963) #199"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13741","name":"Uncanny + X-Men (1963) #200"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13747","name":"Uncanny + X-Men (1963) #206"},{"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/13796","name":"Uncanny + X-Men (1963) #255"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13942","name":"Uncanny + X-Men (1963) #401"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13943","name":"Uncanny + X-Men (1963) #402"}],"returned":20},"series":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009164/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27547","name":"Excalibur + (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/563","name":"New + Mutants (2003 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1764","name":"New + Mutants Classic Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20086","name":"Quicksilver + (1997 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What + If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor + Annual (1986 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/403","name":"X-Men + (2004 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men + Annual (1970 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31573","name":"X-Men + Unlimited Infinity Comic (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1301","name":"X-Men: + Day of the Atom (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1327","name":"X-Men: + Days of Future Past (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1318","name":"X-MEN: + DREAM''S END TPB (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36858","name":"X-Men: + Hellfire Gala Confessionals Infinity Comic (2022)"}],"returned":20},"stories":{"available":54,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009164/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/624","name":"X-MEN + (2004) #162","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1888","name":"New + Mutants (2003) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1889","name":"Interior + #1889","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19866","name":"The + Razor''s Edge Part 2: The Killing Stroke","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22092","name":"Ambushed!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22106","name":"Promised + Vengeance","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22108","name":"The + Waking","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22376","name":"Spots!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24370","name":"Dream''s + End Part II: Life Decisions","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26136","name":"Heroes + and Villains Part One","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26137","name":"Cover + #26137","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26138","name":"Heroes + and Villains Part Two: Treachery","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26140","name":"Heroes + and Villains Part Three: Foreshadowing","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26142","name":"Heroes + and Villains Part Four: Full Circle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","name":"Mind + Out of Time!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27864","name":"Sanction","type":"interiorStory"}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009164/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009164/avalanche?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Avalanche?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009164/avalanche?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009199,"name":"Blob","description":"","modified":"2011-02-09T17:31:11-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/10/4c7c648178328","extension":"png"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","comics":{"available":77,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38524","name":"Age + of X: Universe (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7467","name":"Cable + (1993) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66300","name":"Cable + & X-Force: Onslaught Rising (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8261","name":"Daredevil + (1964) #269"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16254","name":"Exiles + (2001) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1094","name":"Exiles + Vol. 3: Out of Time (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3417","name":"Generation + M (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3463","name":"House + of M: Uncanny X-Men (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9180","name":"Incredible + Hulk (1962) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/105507","name":"Love + Unlimited Infinity Comic (2022) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1587","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14796","name":"Peter + Parker, the Spectacular Spider-Man (1976) #91"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43455","name":"Amazing + Spider-Man (1999) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36153","name":"Uncanny + X-Force (2010) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40447","name":"Uncanny + X-Force (2010) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40442","name":"Uncanny + X-Force (2010) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12539","name":"Uncanny + X-Men (1963) #86"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12459","name":"Uncanny + X-Men (1963) #140"}],"returned":20},"series":{"available":32,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/154","name":"Exiles + Vol. 3: Out of Time (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/973","name":"Generation + M (2005 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36514","name":"Love + Unlimited Infinity Comic (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"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/9976","name":"Uncanny + X-Force (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What + If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6688","name":"X-51 + (1999 - 2000)"}],"returned":20},"stories":{"available":80,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/752","name":"Uncanny + X-Men (1963) #463","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/755","name":"4 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5486","name":"3 + of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5487","name":"3 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15470","name":"Rage!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15507","name":"Uncanny + X-Men (1963) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15624","name":"Uncanny + X-Men (1963) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15663","name":"Cover + #15663","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16097","name":"DAREDEVIL + (1964) #269","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18887","name":"Incredible + Hulk (1962) #369","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18888","name":"Silent + Screams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22103","name":"Guido + vs. Blob","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22237","name":"Kiss + Of Death!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22243","name":"For + All The World To See","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22259","name":"Dust + To Dust","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/characters/308/blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009199/blob?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009243,"name":"Colossus","description":"","modified":"2016-02-11T10:06:50-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/51127cf4b996f","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","comics":{"available":696,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009243/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/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/12676","name":"Alpha + Flight (1983) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12694","name":"Alpha + Flight (1983) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12725","name":"Alpha + Flight (1983) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51348","name":"Amazing + X-Men (2013) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1808","name":"Astonishing + X-Men (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/843","name":"Astonishing + X-Men (2004) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/927","name":"Astonishing + X-Men (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1436","name":"Astonishing + X-Men (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2842","name":"Astonishing + X-Men (2004) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2161","name":"Astonishing + X-Men (2004) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3475","name":"Astonishing + X-Men (2004) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4022","name":"Astonishing + X-Men (2004) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67717","name":"Astonishing + X-Men (2017) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67718","name":"Astonishing + X-Men (2017) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4253","name":"Astonishing + X-Men (2004) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4736","name":"Astonishing + X-Men (2004) #16"}],"returned":20},"series":{"available":167,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009243/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/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7576","name":"Astonishing + X-Men by Joss Whedon & John Cassaday (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1464","name":"Astonishing + X-Men Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1298","name":"Astonishing + X-Men Vol. 1: Gifted (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1422","name":"Astonishing + X-Men Vol. 2: Dangerous (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1485","name":"Astonishing + X-Men Vol. 3: Torn (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5055","name":"Astonishing + X-Men Vol. 4: Unstoppable (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15305","name":"Avengers + Vs. X-Men (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/784","name":"Black + Panther (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"}],"returned":20},"stories":{"available":853,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009243/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/477","name":"Cover + #477","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/743","name":"5 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/745","name":"1 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/763","name":"3 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1454","name":"Ultimate + X-Men (2001) #61","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2843","name":"1 + of 1 - TBD","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3321","name":"Astonishing + X-Men (2004) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3322","name":"“GIFTED” + 5 (OF 6) As demand for the","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3323","name":"Cover + for Astonishing X-Men (2004) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3324","name":"“GIFTED” + PART 6 (OF 6) Outnumbered and outgunned, the X-Men are finally brought together + as a team by their newest addition – bu","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3326","name":"2 + of 6 - Dangerous","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3332","name":"Interior + #3332","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3335","name":"6 + of 6 - Dangerous","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3336","name":"6 + of 6 - Dangerous","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3337","name":"Interior + #3337","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3338","name":"1 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3339","name":"1 + of 6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3341","name":"2 + of 6 - Torn","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3343","name":"3 + of 6 - Torn","type":"interiorStory"}],"returned":20},"events":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009243/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009243/colossus?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Colossus_(Piotr_Rasputin)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009243/colossus?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009271,"name":"Destiny","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/1009271","comics":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009271/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91737","name":"Immortal + X-Men (2022) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91739","name":"Immortal + X-Men (2022) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96222","name":"Inferno + (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96223","name":"Inferno + (2021) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96224","name":"Inferno + (2021) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96225","name":"Inferno + (2021) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19816","name":"Marvel + Fanfare (1982) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1500","name":"MARVEL + MASTERWORKS: THE INCREDIBLE HULK VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15912","name":"Marvel + Masterworks: The Sub-Mariner Vol. 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/97266","name":"Marvel''s + Voices: Pride (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95052","name":"Marvel''s + Voices: Pride (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34025","name":"Moon + Knight (2011) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17062","name":"Sub-Mariner + (1968) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11350","name":"Tales + to Astonish (1959) #101"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13682","name":"Uncanny + X-Men (1963)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13711","name":"Uncanny + X-Men (1963) #170"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13718","name":"Uncanny + X-Men (1963) #177"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13719","name":"Uncanny + X-Men (1963) #178"}],"returned":20},"series":{"available":22,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009271/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31375","name":"Immortal + X-Men (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32954","name":"Inferno + (2021 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3719","name":"Marvel + Fanfare (1982 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1404","name":"MARVEL + MASTERWORKS: THE INCREDIBLE HULK VOL. 2 HC (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2441","name":"Marvel + Masterworks: The Sub-Mariner Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32375","name":"Marvel''s + Voices: Pride (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33365","name":"Marvel''s + Voices: Pride (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10639","name":"Moon + Knight (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2989","name":"Sub-Mariner + (1968 - 1974)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2080","name":"Tales + to Astonish (1959 - 1968)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1777","name":"Women + of Marvel (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men + (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1327","name":"X-Men: + Days of Future Past (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","name":"X-Men: + Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/646","name":"X-Treme + X-Men (2001 - 2004)"}],"returned":20},"stories":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009271/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12013","name":"...And + Evil Shall Beckon!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22108","name":"The + Waking","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22122","name":"Cover + #22122","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22123","name":"Reaching + out to Yesterday","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22237","name":"Kiss + Of Death!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22376","name":"Spots!","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/26044","name":"Savage + Genesis","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27785","name":"The + Boy Who Saw Tomorrow!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","name":"Mind + Out of Time!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27850","name":"Dancin'' + In the Dark","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27864","name":"Sanction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27866","name":"Hell + Hath No Fury","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27880","name":"Public + Enemy","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27908","name":"The + Spiral Path","type":"interiorStory"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009271/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/characters/543/destiny?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Destiny_(Irene_Adler)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009271/destiny?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009472,"name":"Nightcrawler","description":"","modified":"2013-10-17T15:06:41-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/40/526034979bc98","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","comics":{"available":629,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009472/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72944","name":"Age + of X-Man: The Amazing Nightcrawler (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72945","name":"Age + of X-Man: The Amazing Nightcrawler (2019) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72946","name":"Age + of X-Man: The Amazing Nightcrawler (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72947","name":"Age + of X-Man: The Amazing Nightcrawler (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72948","name":"Age + of X-Man: The Amazing Nightcrawler (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73065","name":"Age + Of X-Man: The Amazing Nightcrawler (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12637","name":"Alpha + Flight (1983) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12694","name":"Alpha + Flight (1983) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48019","name":"Amazing + X-Men (2013) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48023","name":"Amazing + X-Men (2013) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48024","name":"Amazing + X-Men (2013) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51147","name":"Amazing + X-Men (2013) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45820","name":"Astonishing + X-Men (2004) #59"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45821","name":"Astonishing + X-Men (2004) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45822","name":"Astonishing + X-Men (2004) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17491","name":"Avengers + (1998) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17546","name":"Avengers + (1998) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1311","name":"Avengers + Assemble (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5844","name":"Avengers + Assemble Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1098","name":"Avengers + Vol. 1: World Trust (Trade Paperback)"}],"returned":20},"series":{"available":189,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009472/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/26373","name":"Age + Of X-Man: The Amazing Nightcrawler (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26332","name":"Age + of X-Man: The Amazing Nightcrawler (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers + Vol. 1: World Trust (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8","name":"Call, + the Vol. 2: The Precinct (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain + America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/690","name":"Captain + Marvel (2000 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/175","name":"Captain + Marvel Vol. 1: Nothing to Lose (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/105","name":"Captain + Marvel Vol. I (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3874","name":"CLANDESTINE + CLASSIC PREMIERE HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3751","name":"Classic + X-Men (1986 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16542","name":"Deadpool + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26545","name":"Death + Of Wolverine Companion (2019)"}],"returned":20},"stories":{"available":741,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009472/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/477","name":"Cover + #477","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/616","name":"X-MEN + (2004) #157","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/737","name":"2 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/738","name":"Uncanny + X-Men (1963) #457","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/739","name":"3 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/740","name":"Uncanny + X-Men (1963) #458","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/741","name":"4 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/742","name":"Uncanny + X-Men (1963) #459","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/743","name":"5 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/745","name":"1 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/759","name":"1 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/760","name":"Uncanny + X-Men (1963) #467","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/761","name":"2 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/764","name":"Uncanny + X-Men (1963) #469","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/765","name":"1 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/766","name":"Uncanny + X-Men (1963) #470","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/767","name":"2 + of 3 - Wand''ring Star","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/768","name":"UNCANNY + X-MEN (1963) #471","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/770","name":"UNCANNY + X-MEN (1963) #472","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/772","name":"UNCANNY + X-MEN (1963) #473","type":"cover"}],"returned":20},"events":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009472/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/320","name":"Axis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/271","name":"Secret + Wars II"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/279","name":"X-Men: + Second Coming"}],"returned":17},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009472/nightcrawler?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Nightcrawler?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009472/nightcrawler?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009522,"name":"Pyro","description":"","modified":"2013-10-15T19:40:03-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/c0/4ce5a0eeab435","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","comics":{"available":58,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009522/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7467","name":"Cable + (1993) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8261","name":"Daredevil + (1964) #269"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9180","name":"Incredible + Hulk (1962) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91756","name":"King + In Black: Marauders (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76750","name":"Marauders + (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76753","name":"Marauders + (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76754","name":"Marauders + (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78401","name":"Marauders + (2019) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78403","name":"Marauders + (2019) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90086","name":"Marauders + (2019) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90087","name":"Marauders + (2019) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90088","name":"Marauders + (2019) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90095","name":"Marauders + (2019) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16483","name":"Marvel + Adventures Spider-Man (2005) #31"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53685","name":"Quicksilver + (1997) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16454","name":"Ultimate + X-Men (2001) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20638","name":"Ultimate + X-Men (2001) #91"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20967","name":"Ultimate + X-Men (2001) #93"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20818","name":"Ultimates + 3 (2007) #4"}],"returned":20},"series":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009522/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31383","name":"King + In Black: Marauders (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27555","name":"Marauders + (2019 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/866","name":"Marvel + Adventures Spider-Man (2005 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20086","name":"Quicksilver + (1997 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/474","name":"Ultimate + X-Men (2001 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3188","name":"Ultimates + 3 (2007 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7515","name":"Ultimates + 3: Who Killed the Scarlet Witch? (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor + Annual (1986 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2941","name":"X-Factor + Visionaries: Peter David Vol. 3 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men + (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men + Annual (1970 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31573","name":"X-Men + Unlimited Infinity Comic (2021 - Present)"}],"returned":20},"stories":{"available":63,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009522/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16097","name":"DAREDEVIL + (1964) #269","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18887","name":"Incredible + Hulk (1962) #369","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18888","name":"Silent + Screams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19866","name":"The + Razor''s Edge Part 2: The Killing Stroke","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22158","name":"A + Mother''s Eyes","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22237","name":"Kiss + Of Death!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22259","name":"Dust + To Dust","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22357","name":"Cover + #22357","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22358","name":"Sittin'' + by the Dock of the Bay","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22376","name":"Spots!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24370","name":"Dream''s + End Part II: Life Decisions","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","name":"Mind + Out of Time!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27864","name":"Sanction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27865","name":"Cover + #27865","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27866","name":"Hell + Hath No Fury","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27908","name":"The + Spiral Path","type":"interiorStory"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009522/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009522/pyro?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Pyro?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009522/pyro?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009629,"name":"Storm","description":"Ororo + Monroe is the descendant of an ancient line of African priestesses, all of + whom have white hair, blue eyes, and the potential to wield magic.","modified":"2016-05-26T11:50:27-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/40/526963dad214d","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","comics":{"available":862,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009629/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/43498","name":"A+X + (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37996","name":"Age + of X: Alpha (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12676","name":"Alpha + Flight (1983) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12694","name":"Alpha + Flight (1983) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12725","name":"Alpha + Flight (1983) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12668","name":"Alpha + Flight (1983) #127"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21511","name":"Astonishing + X-Men (2004) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21714","name":"Astonishing + X-Men (2004) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21941","name":"Astonishing + X-Men (2004) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23087","name":"Astonishing + X-Men (2004) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23937","name":"Astonishing + X-Men (2004) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24501","name":"Astonishing + X-Men (2004) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24503","name":"Astonishing + X-Men (2004) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24504","name":"Astonishing + X-Men (2004) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24505","name":"Astonishing + X-Men (2004) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30332","name":"Astonishing + X-Men (2004) #35"},{"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/39318","name":"Astonishing + X-Men (2004) #44"}],"returned":20},"series":{"available":219,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009629/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31906","name":"Atlantis + Attacks: The Original Epic (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15305","name":"Avengers + Vs. X-Men (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3626","name":"Bishop + (1994 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2115","name":"Black + Panther (1998 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24291","name":"Black + Panther (2018 - 2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31553","name":"Black + Panther (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/784","name":"Black + Panther (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6804","name":"Black + Panther (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20912","name":"Black + Panther (2016 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23017","name":"Black + Panther and the Crew (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3850","name":"Black + Panther Annual (2008)"}],"returned":20},"stories":{"available":1003,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009629/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/497","name":"Interior + #497","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/648","name":"1 + of 2- Black Panther crossover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/650","name":"2 + of 2- Black Panther crossover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/737","name":"2 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/738","name":"Uncanny + X-Men (1963) #457","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/739","name":"3 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/742","name":"Uncanny + X-Men (1963) #459","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/743","name":"5 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/745","name":"1 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/749","name":"1 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/760","name":"Uncanny + X-Men (1963) #467","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/761","name":"2 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/765","name":"1 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/767","name":"2 + of 3 - Wand''ring Star","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/768","name":"UNCANNY + X-MEN (1963) #471","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/770","name":"UNCANNY + X-MEN (1963) #472","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1420","name":"ULTIMATE + X-MEN (2000) #43","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1422","name":"ULTIMATE + X-MEN (2000) #44","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1426","name":"ULTIMATE + X-MEN (2000) #49","type":"cover"}],"returned":20},"events":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009629/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy + of the State"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/334","name":"Inhumans + Vs. X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009629/storm?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Storm?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009629/storm?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009718,"name":"Wolverine","description":"Born + with super-human senses and the power to heal from almost any wound, Wolverine + was captured by a secret Canadian organization and given an unbreakable skeleton + and claws. Treated like an animal, it took years for him to control himself. + Now, he''s a premiere member of both the X-Men and the Avengers.","modified":"2016-05-02T12:21:44-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/537bcaef0f6cf","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","comics":{"available":2590,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009718/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41113","name":"5 + Ronin (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38756","name":"5 + Ronin (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36162","name":"5 + Ronin (2010) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43488","name":"A+X + (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43501","name":"A+X + (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43505","name":"A+X + (2012) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43508","name":"A+X + (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78497","name":"Acts + Of Evil (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29317","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29318","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37996","name":"Age + of X: Alpha (2010) #1"},{"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/24221","name":"Agents + of Atlas (2009) #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/66661","name":"Agents + of Atlas: The Complete Collection Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62094","name":"All-New + Wolverine Vol. 5: Orphans of X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43467","name":"All-New + X-Men (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12690","name":"Alpha + Flight (1983) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38564","name":"Alpha + Flight (2011) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12671","name":"Alpha + Flight (1983) #13"}],"returned":20},"series":{"available":702,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009718/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/15276","name":"5 + Ronin (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12429","name":"5 + Ronin (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27975","name":"Acts + Of Evil (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9994","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9995","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6807","name":"Agents + of Atlas (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24134","name":"Agents + of Atlas: The Complete Collection Vol. 1 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22728","name":"All-New + Wolverine Vol. 5: Orphans of X (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13907","name":"Alpha + Flight (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31965","name":"Amazing + Fantasy: Prelude Infinity Comic (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1489","name":"AMAZING + SPIDER-MAN VOL. 10: NEW AVENGERS TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14818","name":"Annihilators: + Earthfall (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9792","name":"Astonishing + Spider-Man & Wolverine (2010 - 2011)"}],"returned":20},"stories":{"available":3602,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009718/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/477","name":"Cover + #477","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/594","name":"X-MEN + (2004) #164","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/608","name":"Cover + #608","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/614","name":"X-MEN + (2004) #159","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/616","name":"X-MEN + (2004) #157","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/618","name":"X-MEN + (2004) #158","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/620","name":"X-MEN + (2004) #160","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/622","name":"X-MEN + (2004) #161","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/624","name":"X-MEN + (2004) #162","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/626","name":"X-MEN + (2004) #163","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/628","name":"X-MEN + (2004) #165","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/630","name":"X-MEN + (2004) #166","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/632","name":"X-MEN + (2004) #167","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/636","name":"X-MEN + (2004) #169","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/638","name":"X-MEN + (2004) #170","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/652","name":"2 + of 3 - House of Broken Dreams","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/670","name":"X-MEN + (2004) #186","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/678","name":"X-MEN + (2004) #190","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/736","name":"Uncanny + X-Men (1963) #456","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/737","name":"2 + of 5 - Savage Land","type":"interiorStory"}],"returned":20},"events":{"available":42,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009718/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/314","name":"Age + of Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy + of the State"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009718/wolverine?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Wolverine_(James_Howlett)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009718/wolverine?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009726,"name":"X-Men","description":"Feared + and hated by humans because they''re different, the X-Men are heroic mutants, + individuals born with special powers who''ve sworn to use their gifts to protect + mutants as well as humans.","modified":"2017-01-24T15:44:42-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/03/510c08f345938","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","comics":{"available":3734,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009726/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/20630","name":"1602 + (2003) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50114","name":"1602 + (2003) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/377","name":"1602 + (2003) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/148","name":"1602 + (2003) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102808","name":"A.X.E.: + Eve Of Judgment (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100748","name":"A.X.E.: + Judgment Day (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100366","name":"A.X.E.: + Judgment Day (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100367","name":"A.X.E.: + Judgment Day (2022) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102807","name":"A.X.E.: + Judgment Day (2022) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102866","name":"A.X.E.: + Judgment Day Companion (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/104869","name":"A.X.E.: + Judgment Day Omega (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102810","name":"A.X.E.: + X-Men (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76877","name":"Adventures + of the X-Men (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76881","name":"Adventures + of the X-Men (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76882","name":"Adventures + of the X-Men (1996) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76883","name":"Adventures + of the X-Men (1996) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76884","name":"Adventures + of the X-Men (1996) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76885","name":"Adventures + of the X-Men (1996) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76886","name":"Adventures + of the X-Men (1996) #12"}],"returned":20},"series":{"available":929,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009726/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/489","name":"1602 + (2003 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35456","name":"A.X.E.: + Eve Of Judgment (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34459","name":"A.X.E.: + Judgment Day (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34560","name":"A.X.E.: + Judgment Day (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35490","name":"A.X.E.: + Judgment Day Companion (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36268","name":"A.X.E.: + Judgment Day Omega (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35458","name":"A.X.E.: + X-Men (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27588","name":"Adventures + of the X-Men (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27040","name":"Adventures + Of The X-Men: Clear And Present Dangers (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27673","name":"Adventures + Of The X-Men: Rites Of Passage (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15331","name":"Age + of Apocalypse (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26328","name":"Age + of X-Man Alpha (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26329","name":"Age + Of X-Man Omega (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26335","name":"Age + of X-Man: Apocalypse & the X-Tracts (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26376","name":"Age + Of X-Man: Apocalypse & The X-Tracts (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26331","name":"Age + of X-Man: Nextgen (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26375","name":"Age + Of X-Man: Prisoner X (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26334","name":"Age + of X-Man: Prisoner X (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26371","name":"Age + Of X-Man: The Marvelous X-Men (2019)"}],"returned":20},"stories":{"available":5413,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009726/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/472","name":"Interior + #472","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/478","name":"Interior + #478","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/492","name":"Interior + #492","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/495","name":"Interior + #495","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/501","name":"Interior + #501","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/503","name":"Interior + #503","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/515","name":"Interior + #515","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/594","name":"X-MEN + (2004) #164","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/595","name":"4 + of 4 - Heroes and Villains","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/603","name":"Interior + #603","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/609","name":"Interior + #609","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/611","name":"Interior + #611","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/613","name":"Interior + #613","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/614","name":"X-MEN + (2004) #159","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/615","name":"Interior + #615","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/616","name":"X-MEN + (2004) #157","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/617","name":"Interior + #617","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/618","name":"X-MEN + (2004) #158","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/619","name":"Interior + #619","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/620","name":"X-MEN + (2004) #160","type":"cover"}],"returned":20},"events":{"available":42,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009726/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/314","name":"Age + of Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/320","name":"Axis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy + of the State"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009726/x-men?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/X-Men?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009726/x-men?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_a_comic_s_creators_by_ID.yml b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_creators_by_ID.yml new file mode 100644 index 0000000..ba43cd9 --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_creators_by_ID.yml @@ -0,0 +1,974 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics/17701/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 95ee4edd8e3fcd8416d61607b619257b3e613224 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:24:50 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"95ee4edd8e3fcd8416d61607b619257b3e613224","data":{"offset":0,"limit":20,"total":16,"count":16,"results":[{"id":11063,"firstName":"Terry","middleName":"Kevin","lastName":"Austin","suffix":"","fullName":"Terry + Kevin Austin","modified":"2020-01-27T14:17:23-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/11063","comics":{"available":217,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/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/29317","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29318","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66979","name":"Adventures + of Captain America (1991) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66980","name":"Adventures + of Captain America (1991) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66981","name":"Adventures + of Captain America (1991) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12637","name":"Alpha + Flight (1983) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12679","name":"Alpha + Flight (1983) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12676","name":"Alpha + Flight (1983) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12709","name":"Alpha + Flight (1983) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6744","name":"The + Amazing Spider-Man (1963) #335"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6746","name":"The + Amazing Spider-Man (1963) #337"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16887","name":"Amazing + Spider-Man Annual (1964) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16889","name":"Amazing + Spider-Man Annual (1964) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17842","name":"West + Coast Avengers Annual (1986) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42867","name":"Bizarre + Adventures (1981) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8036","name":"Captain + Marvel (1968) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8037","name":"Captain + Marvel (1968) #48"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8038","name":"Captain + Marvel (1968) #49"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8039","name":"Captain + Marvel (1968) #50"}],"returned":20},"series":{"available":81,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9994","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9995","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24227","name":"Adventures + of Captain America (1991 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16347","name":"Bizarre + Adventures (1981)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2000","name":"Captain + Marvel (1968 - 1979)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3751","name":"Classic + X-Men (1986 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7303","name":"Cloak + and Dagger (1983)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14157","name":"Cloak + and Dagger (1985 - 1987)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25724","name":"Cloak + and Dagger: Predator and Prey (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19133","name":"Deadly + Hands of Kung Fu (1974 - 1977)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3743","name":"Defenders + (1972 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3740","name":"Doctor + Strange (1974 - 1988)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1780","name":"Doctor + Strange Vs. Dracula: The Montesi Formula (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24022","name":"Excalibur + Epic Collection: The Cross-Time Caper (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3736","name":"Excalibur: + Mojo Mayhem (1989)"}],"returned":20},"stories":{"available":268,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14076","name":"Amazing + Spider-Man (1963) #335","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14077","name":"Shocks!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14080","name":"Amazing + Spider-Man (1963) #337","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14081","name":"Rites + and Wrongs","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14632","name":"Cover + #14632","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14634","name":"Cover + #14634","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15435","name":"UNCANNY + X-MEN (1963) #125","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15437","name":"UNCANNY + X-MEN (1963) #126","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15439","name":"UNCANNY + X-MEN (1963) #127","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15441","name":"UNCANNY + X-MEN (1963) #128","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15443","name":"UNCANNY + X-MEN (1963) #129","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15447","name":"UNCANNY + X-MEN (1963) #130","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15449","name":"Cover + #15449","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15451","name":"Cover + #15451","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15455","name":"Heroes + and Hellfire","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15457","name":"Defeated + by Dark Phoenix!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15463","name":"Exit + Cyclops!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15465","name":"Welcome + to the X-Men Kitty Pryde Hope You Survive the Experience!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15469","name":"Fist + to Fist With the Savage Fury of Wen-Di-Go!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16982","name":"[The + Last Viking]","type":"interiorStory"}],"returned":20},"events":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":9},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/11063/terry_kevin_austin?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1192,"firstName":"Ian","middleName":"","lastName":"Churchill","suffix":"","fullName":"Ian + Churchill","modified":"2011-12-09T15:23:22-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/80/4bb87fab88700","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1192","comics":{"available":98,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/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/17758","name":"Avengers + (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17759","name":"Avengers + (1996) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17760","name":"Avengers + (1996) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17761","name":"Avengers + (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20628","name":"Avengers + Annual (2001) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5844","name":"Avengers + Assemble Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39770","name":"Avengers: + X-Sanction (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42304","name":"Avengers: + X-Sanction (2011) #3 (Churchill Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7404","name":"Cable + (1993) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7394","name":"Cable + (1993) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7395","name":"Cable + (1993) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7396","name":"Cable + (1993) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7397","name":"Cable + (1993) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7399","name":"Cable + (1993) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7400","name":"Cable + (1993) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7401","name":"Cable + (1993) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7402","name":"Cable + (1993) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7403","name":"Cable + (1993) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7405","name":"Cable + (1993) #30"}],"returned":20},"series":{"available":53,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/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/3621","name":"Avengers + (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26448","name":"Avengers + Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14703","name":"Avengers: + X-Sanction (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26627","name":"Cable + & X-Force: Onslaught! (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17723","name":"Cable + and X-Force Classic (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4059","name":"Cable + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2004","name":"Deadpool + (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5701","name":"Deadpool + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24830","name":"Deadpool + Classic Companion Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4605","name":"Deadpool + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32337","name":"Deadpool + Epic Collection: The Circle Chase (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21304","name":"DEADPOOL + FIRSTS TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29200","name":"Deadpool: + Hey, It''s Deadpool! Marvel Select (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1813","name":"Heroes + Reborn: Avengers (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29206","name":"HEROES + REBORN: AVENGERS TPB [NEW PRINTING] (2020)"}],"returned":20},"stories":{"available":140,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/137","name":"A + wild evil mutant comes of age, celebrating with superhuman mayhem. And in + London, the X-Men must stop Mr. Clean, a self-styled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6608","name":"Uncanny + 391-393; New X-Men 111-113","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22608","name":"In + the Name of Love","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24207","name":"CABLE + (1993) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24208","name":"A + Legion Quest Addendum: An Hour of Last Things","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24209","name":"CABLE + (1993) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24211","name":"CABLE + (1993) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24212","name":"Sanctuary","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24213","name":"CABLE + (1993) #23","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24214","name":"Family + Secrets","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24217","name":"CABLE + (1993) #25","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24218","name":"\"What + Was...What Is...\"","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24219","name":"CABLE + (1993) #26","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24221","name":"CABLE + (1993) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24222","name":"Rebels","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24223","name":"CABLE + (1993) #28","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24226","name":"Man + in the Mirror","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24227","name":"Next + Issue: X-Man...Cable...''Nuff Said!","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24229","name":"Twenty + Questions","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24231","name":"For + Every Action...","type":"interiorStory"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1192/ian_churchill?utm_campaign=apiRef&utm_source=abcd"}]},{"id":362,"firstName":"Scott","middleName":"","lastName":"Hanna","suffix":"","fullName":"Scott + Hanna","modified":"2018-07-25T12:07:39-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/80/4bb87fab88700","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/362","comics":{"available":775,"collectionURI":"http://gateway.marvel.com/v1/public/creators/362/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/84350","name":"2020 + Rescue (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84975","name":"2020 + Rescue (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84351","name":"2020 + Rescue (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/88411","name":"2020 + Rescue (2020) #2 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/556","name":"4 + (2004) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/811","name":"4 + (2004) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1550","name":"4 + Vol. 2: The Stuff of Nightmares (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74016","name":"Age + of Conan: Belit (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74017","name":"Age + of Conan: Belit (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74018","name":"Age + of Conan: Belit (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77186","name":"Age + of Conan: Belit (2019) #5 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77354","name":"Age + of Conan: Belit (2019) #5 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60154","name":"ALL-NEW + WOLVERINE VOL. 3: ENEMY OF THE STATE II TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90779","name":"Amazing + Fantasy (2022) #1000"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37894","name":"Amazing + Spider-Man (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3583","name":"Amazing + Spider-Man (1999) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/277","name":"Amazing + Spider-Man (1999) #500"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/322","name":"Amazing + Spider-Man (1999) #501"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/392","name":"Amazing + Spider-Man (1999) #502"}],"returned":20},"series":{"available":279,"collectionURI":"http://gateway.marvel.com/v1/public/creators/362/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/29696","name":"2020 + Rescue (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/725","name":"4 + (2004 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1253","name":"4 + Vol. 2: The Stuff of Nightmares (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26676","name":"Age + of Conan: Belit (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22105","name":"ALL-NEW + WOLVERINE VOL. 3: ENEMY OF THE STATE II TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31208","name":"Amazing + Fantasy (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32860","name":"Amazing + Spider-Man by Wells & Romita Jr. Vol. 1: World Without Love (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32861","name":"Amazing + Spider-Man By Wells & Romita Jr. Vol. 2: The New Sinister (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35576","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32029","name":"Amazing + Spider-Man Epic Collection: Lifetheft (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/318","name":"Amazing + Spider-Man Vol. 6 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1292","name":"AMAZING + SPIDER-MAN VOL. 7: BOOK OF EZEKIEL TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1291","name":"Amazing + Spider-Man Vol. 7: The Book of Ezekiel (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31214","name":"Amazing + Spider-Man: Last Remains Companion (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19632","name":"Amazing + Spider-Man: Renew Your Vows (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29604","name":"Amazing + Spider-Man: The Daily Bugle (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27985","name":"Annihilation + - Scourge: Fantastic Four (2019)"}],"returned":20},"stories":{"available":950,"collectionURI":"http://gateway.marvel.com/v1/public/creators/362/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/483","name":"Interior + #483","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/487","name":"Interior + #487","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/723","name":"Interior + #723","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/725","name":"Interior + #725","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/745","name":"1 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/751","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1019","name":"Interior + #1019","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1021","name":"Interior + #1021","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1023","name":"Interior + #1023","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1138","name":"Interior + #1138","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1140","name":"Interior + #1140","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1142","name":"Interior + #1142","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1290","name":"Ultimate + Spider-Man (2000) #68","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1291","name":"1 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1292","name":"Ultimate + Spider-Man (2000) #69","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1293","name":"2 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1307","name":"Interior + #1307","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1309","name":"Interior + #1309","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1311","name":"Interior + #1311","type":"interiorStory"}],"returned":20},"events":{"available":19,"collectionURI":"http://gateway.marvel.com/v1/public/creators/362/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/293","name":"Annihilation: + Conquest"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"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/287","name":"Heroic + Age"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/323","name":"Secret + Wars (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered + Heroes"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/276","name":"War + of Kings"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":19},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/362/scott_hanna?utm_campaign=apiRef&utm_source=abcd"}]},{"id":438,"firstName":"Karl","middleName":"","lastName":"Kesel","suffix":"","fullName":"Karl + Kesel","modified":"2014-03-19T17:35:37-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/a0/4bc31910cdea5","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/438","comics":{"available":168,"collectionURI":"http://gateway.marvel.com/v1/public/creators/438/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/24371","name":"All + Winners Comics 70th Anniversary Special (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2532","name":"Amazing + Fantasy (2004) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2533","name":"Amazing + Fantasy (2004) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23568","name":"Amazing + Spider-Man (1999) #586"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24133","name":"Amazing + Spider-Man (1999) #593"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30322","name":"Amazing + Spider-Man (1999) #647"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35523","name":"Amazing + Spider-Man (1999) #672"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30196","name":"Amazing + Spider-Man Annual (2010) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82322","name":"AMAZING + SPIDER-MAN BY J. MICHAEL STRACZYNSKI OMNIBUS VOL. 2 HC DEODATO COVER (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21798","name":"Amazing + Spider-Man Family (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63309","name":"Marvel + Comics Digest Starring the Amazing Spider-Man Vol. 1 (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59600","name":"Avengers + (2016) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67768","name":"Avengers + (2018) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67769","name":"Avengers + (2018) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5844","name":"Avengers + Assemble Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41694","name":"Marvel + Universe Avengers: Earth''s Mightiest Heroes (2012) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56322","name":"Avengers + Origins Presented by Adobe (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41688","name":"MARVEL + UNIVERSE AVENGERS EARTH''S MIGHTIEST HEROES VOL. 2 DIGEST (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7354","name":"Avengers: + The Ultron Imperative (2001) #1"}],"returned":20},"series":{"available":91,"collectionURI":"http://gateway.marvel.com/v1/public/creators/438/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/7534","name":"All + Winners Comics 70th Anniversary Special (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/769","name":"Amazing + Fantasy (2004 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9802","name":"Amazing + Spider-Man Annual (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29244","name":"AMAZING + SPIDER-MAN BY J. MICHAEL STRACZYNSKI OMNIBUS VOL. 2 HC DEODATO COVER (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5376","name":"Amazing + Spider-Man Family (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22547","name":"Avengers + (2016 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24229","name":"Avengers + (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20655","name":"Avengers + Origins Presented by Adobe (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24456","name":"Avengers + Spotlight (1989 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1992","name":"Avengers: + The Ultron Imperative (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1503","name":"Best + of the Fantastic Four Vol. 1 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29192","name":"Captain + America: Heroes Return - The Complete Collection Vol. 1 (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9870","name":"Captain + America: Patriot (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10083","name":"CAPTAIN + AMERICA: PATRIOT TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12279","name":"Captain + America: Rebirth (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9701","name":"Captain + America: The 1940s Newspaper Strip (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24020","name":"Captain + America: The Adventures of Captain America (2018)"}],"returned":20},"stories":{"available":237,"collectionURI":"http://gateway.marvel.com/v1/public/creators/438/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/701","name":"Interior + #701","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/802","name":"Fantastic + Four (1998) #509","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/803","name":"Interior + #803","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/898","name":"Fantastic + Four (1998) #520","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/899","name":"1 + of 5 - Galactus","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/912","name":"Fantastic + Four (1998) #512","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/913","name":"Interior + #913","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/915","name":"Interior + #915","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/916","name":"Fantastic + Four (1998) #513","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/917","name":"Interior + #917","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/919","name":"Interior + #919","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/921","name":"Interior + #921","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/922","name":"Fantastic + Four (1998) #518","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":"Fantastic + Four (1998) #519","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/926","name":"2 + of 4 - Galactus","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/927","name":"2 + of 4 - Galactus","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/928","name":"3 + of 4 - Galactus","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/929","name":"3 + of 4 - Galactus","type":"interiorStory"}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/creators/438/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers + Disassembled"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/266","name":"Other + - Evolve or Die"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/305","name":"Spider-Island"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/438/karl_kesel?utm_campaign=apiRef&utm_source=abcd"}]},{"id":11757,"firstName":"Salvador","middleName":"","lastName":"Larroca","suffix":"","fullName":"Salvador + Larroca","modified":"2019-05-13T15:44:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/c0/51080a4fd40a9","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","comics":{"available":760,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11757/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/33011","name":"INVINCIBLE + IRON MAN VOL. 6: STARK RESILIENT BOOK 2 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45764","name":"A+X + VOL. 2: = AMAZING TPB (MARVEL NOW) (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43507","name":"A+X + (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43508","name":"A+X + (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103219","name":"A.X.E.: + Judgment Day (2022) #4 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77096","name":"Absolute + Carnage: Lethal Protectors (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89565","name":"Alien + (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89568","name":"Alien + (2021) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93775","name":"Alien + (2021) #2 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93974","name":"Alien + (2021) #2 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89571","name":"Alien + (2021) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94379","name":"Alien + (2021) #3 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94380","name":"Alien + (2021) #3 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89574","name":"Alien + (2021) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94786","name":"Alien + (2021) #4 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94787","name":"Alien + (2021) #4 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89576","name":"Alien + (2021) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95517","name":"Alien + (2021) #5 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95518","name":"Alien + (2021) #5 (Variant)"}],"returned":20},"series":{"available":274,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11757/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17272","name":"A+X + VOL. 2: = AMAZING TPB (MARVEL NOW) (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34459","name":"A.X.E.: + Judgment Day (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27646","name":"Absolute + Carnage: Lethal Protectors (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30863","name":"Alien + (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34292","name":"Alien + Annual (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30864","name":"Alien + Vol. 1: Bloodlines (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30866","name":"Alien + Vol. 2: Revival (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18315","name":"All-New + Invaders (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18729","name":"All-New + Marvel Now! Point One (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18136","name":"All-New + X-Factor (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19988","name":"All-New + X-Men (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34554","name":"All-Out + Avengers (2022 - 2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18901","name":"Amazing + X-Men Annual (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19268","name":"Amazing + X-Men Vol. 3: Once and Future Juggernaut (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19271","name":"Angela: + Asgard''s Assassin (2014 - 2015)"}],"returned":20},"stories":{"available":1117,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11757/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/171","name":"One + of the X-Men, Jean Grey, has unwittingly attained power beyond imagination. As + the Dark Phoenix, she is capable of incinera","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/455","name":"In + this special tribute to William Shakespeare’s most beloved work, Romeo & Juliet, + popular X-Men artist Salvador Larroca illust","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/456","name":"In + this special tribute to William Shakespeare’s most beloved work, Romeo & Juliet, + popular X-Men artist Salvador Larroca illust","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/594","name":"X-MEN + (2004) #164","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/595","name":"4 + of 4 - Heroes and Villains","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/602","name":"Cover + #602","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/610","name":"Cover + #610","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/612","name":"Cover + #612","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/613","name":"Interior + #613","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/614","name":"X-MEN + (2004) #159","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/615","name":"Interior + #615","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/616","name":"X-MEN + (2004) #157","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/617","name":"Interior + #617","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/618","name":"X-MEN + (2004) #158","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/619","name":"Interior + #619","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/620","name":"X-MEN + (2004) #160","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/621","name":"Interior + #621","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/622","name":"X-MEN + (2004) #161","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/623","name":"\"HEROES + AND VILLIANS\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants + is back with Nocturne from the Exiles, and a","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/624","name":"X-MEN + (2004) #162","type":"cover"}],"returned":20},"events":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11757/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/320","name":"Axis"},{"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/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/333","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/337","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered + Heroes"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/327","name":"Star + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/276","name":"War + of Kings"}],"returned":12},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/11757/salvador_larroca?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1163,"firstName":"Tom","middleName":"","lastName":"Lyle","suffix":"","fullName":"Tom + Lyle","modified":"2011-01-01T21:32:32-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/d0/4bb6f66ce4f6d","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1163","comics":{"available":75,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1163/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/16902","name":"Amazing + Spider-Man Annual (1964) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103264","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93791","name":"Amazing + Spider-Man Epic Collection: Lifetheft (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/99925","name":"Carnage + Epic Collection: Born In Blood (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8379","name":"Daredevil + (1964) #375"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51618","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60677","name":"Guardians + of The Galaxy: Road to Annihilation Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19897","name":"Iron + Man (1998) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10142","name":"Marvel + Comics Presents (1988) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10160","name":"Marvel + Comics Presents (1988) #77"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10161","name":"Marvel + Comics Presents (1988) #78"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10162","name":"Marvel + Comics Presents (1988) #79"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72871","name":"Mutant + X (1998) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72872","name":"Mutant + X (1998) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72873","name":"Mutant + X (1998) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72874","name":"Mutant + X (1998) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72876","name":"Mutant + X (1998) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72878","name":"Mutant + X (1998) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72880","name":"Mutant + X (1998) #29"}],"returned":20},"series":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1163/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/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35576","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32029","name":"Amazing + Spider-Man Epic Collection: Lifetheft (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34386","name":"Carnage + Epic Collection: Born In Blood (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19365","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22421","name":"Guardians + of The Galaxy: Road to Annihilation Vol. 1 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2572","name":"Iron + Man (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel + Comics Presents (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26325","name":"Mutant + X (1998 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28078","name":"Mutant + X: The Complete Collection Vol. 2 (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6681","name":"Punisher + (1995 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2069","name":"Spider-Man + (1990 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1169","name":"Spider-Man + Maximum Carnage (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13695","name":"Spider-Man + Unlimited (1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36417","name":"Spider-Man + Vs. Venom Omnibus (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22527","name":"Spider-Man/Punisher: + Family Plot (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21779","name":"Spider-Man: + Maximum Clonage Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14976","name":"Spider-Man: + Spider-Hunt (2011 - Present)"}],"returned":20},"stories":{"available":97,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1163/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6323","name":"ASM + 378-380; Spect SM 201-203; SM 35-37; SM Unlimited 1, 2; Web of SM 101-103","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16346","name":"With + a Little Help From My Friends","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21733","name":"Spider-Man + Sketch File","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23562","name":"Rumanian + Rumble Part 1: Rude Awakening","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23794","name":"Spider-Man + (1990) #35","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23795","name":"Team + Venom (Maximum Carnage, Chapter Four)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23796","name":"Crawl + Space","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23797","name":"Spider-Man + (1990) #36","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23798","name":"Hate + Is in the Air (Maximum Carnage, Part 8)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23799","name":"Crawl + Space","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23800","name":"Spider-Man + (1990) #37","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23801","name":"The + Light! (Maximum Carnage, Chapter 12)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23802","name":"Crawl + Space","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23823","name":"Cover + #23823","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23824","name":"The + Dream Before (Pursuit, Part One)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42651","name":"Ultimate + Devastation","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42652","name":"Ultimate + Devastation Chapter 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42653","name":"Ultimate + Devastation Chapter 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42654","name":"Ultimate + Devastation Interlude","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42655","name":"Ultimate + Devastation Chapter 4","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1163/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1163/tom_lyle?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1286,"firstName":"Howard","middleName":"","lastName":"Mackie","suffix":"","fullName":"Howard + Mackie","modified":"2010-11-22T11:42:53-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/40/4bc46fe1552c5","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1286","comics":{"available":348,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1286/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/37894","name":"Amazing + Spider-Man (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65365","name":"Amazing + Spider-Man Annual (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65951","name":"Amazing + Spider-Man Annual (2000) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93791","name":"Amazing + Spider-Man Epic Collection: Lifetheft (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50802","name":"Astonishing + X-Men (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50803","name":"Astonishing + X-Men (1999) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50804","name":"Astonishing + X-Men (1999) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17509","name":"Avengers + (1998) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7282","name":"Avengers + (1963) #397"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6932","name":"Avengers + Annual (1967) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17774","name":"Avengers + Annual (1967) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4461","name":"Avengers + Assemble Vol. 3 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67809","name":"Avengers + Spotlight (1989) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67810","name":"Avengers + Spotlight (1989) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67811","name":"Avengers + Spotlight (1989) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17843","name":"West + Coast Avengers Annual (1986) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2215","name":"Avengers + West Coast: Vision Quest (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47633","name":"AVENGERS/IRON + MAN: FIRST SIGN TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/98370","name":"Captain + America Epic Collection: Arena Of Death (Trade Paperback)"}],"returned":20},"series":{"available":110,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1286/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/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23794","name":"Amazing + Spider-Man Annual (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23657","name":"Amazing + Spider-Man Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23925","name":"Amazing + Spider-Man Annual (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32029","name":"Amazing + Spider-Man Epic Collection: Lifetheft (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19016","name":"Astonishing + X-Men (1999)"},{"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/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24456","name":"Avengers + Spotlight (1989 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1497","name":"Avengers + West Coast: Vision Quest (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17966","name":"AVENGERS/IRON + MAN: FIRST SIGN TPB (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33928","name":"Captain + America Epic Collection: Arena Of Death (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29764","name":"Captain + Marvel: The Many Lives of Carol Danvers (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3747","name":"D.P.7 + (1986 - 1989)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32034","name":"Doctor + Strange Epic Collection: The Vampiric Verses (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8836","name":"Gambit + (1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18055","name":"Gambit + (1997)"}],"returned":20},"stories":{"available":504,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1286/stories","items":[{"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/19451","name":"interior + to Iron Man #241","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19456","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19460","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19470","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19472","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19474","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19477","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19480","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22000","name":"Prelude: The + Spider''s Thread","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22001","name":"Sleight + of Mind!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22016","name":"Storm + Shadows (Spirits of Venom, Part 1)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22018","name":"Enemies: A + Hate Story (Spirits of Venom, Part 3)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22030","name":"Cover + #22030","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22031","name":"Enemies","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22032","name":"Cover + #22032","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22033","name":"Celebrity","type":"interiorStory"}],"returned":20},"events":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1286/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":6},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1286/howard_mackie?utm_campaign=apiRef&utm_source=abcd"}]},{"id":13392,"firstName":"Sergio","middleName":"","lastName":"Melia-Borras","suffix":"","fullName":"Sergio + Melia-Borras","modified":"2022-05-24T09:32:47-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/creators/13392","comics":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13392/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/98371","name":"Excalibur + Epic Collection: The Battle For Britain (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/101008","name":"Kitty + Pryde, Agent of S.H.I.E.L.D. (1997) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/101009","name":"Kitty + Pryde, Agent of S.H.I.E.L.D. (1997) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/101010","name":"Kitty + Pryde, Agent of S.H.I.E.L.D. (1997) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93171","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52957","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (Trade Paperback)"}],"returned":7},"series":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13392/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/33929","name":"Excalibur + Epic Collection: The Battle For Britain (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34607","name":"Kitty + Pryde, Agent of S.H.I.E.L.D. (1997 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31871","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19806","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (2015)"}],"returned":5},"stories":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13392/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/117492","name":"story + from X-Men: Age of Apocalypse - Omega (2015)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186887","name":"story + from AGE OF APOCALYPSE: THE CHOSEN 1 (1995) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/207455","name":"story + from X-MEN: AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER (2021) #1 (BILLY + TAN COVER)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/217812","name":"story + from EXCALIBUR EPIC COLLECTION: THE BATTLE FOR BRITAIN TPB (2022) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/223119","name":"story + from Kitty Pryde, Agent of S.H.I.E.L.D. (1997) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/223121","name":"story + from Kitty Pryde, Agent of S.H.I.E.L.D. (1997) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/223123","name":"story + from Kitty Pryde, Agent of S.H.I.E.L.D. (1997) #3","type":"interiorStory"}],"returned":7},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13392/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/creators/13392/sergio_melia-borras?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1914,"firstName":"Dan","middleName":"","lastName":"Panosian","suffix":"","fullName":"Dan + Panosian","modified":"2016-03-21T17:57:12-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/f0/4bc33607ae624","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1914","comics":{"available":169,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1914/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/78474","name":"Absolute + Carnage Vs. Deadpool (2019) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76876","name":"Adventures + of the X-Men (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76878","name":"Adventures + of the X-Men (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24363","name":"Agents + of Atlas (2009) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27874","name":"Agents + of Atlas (2009) #9 (70TH FRAME VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24355","name":"Agents + of Atlas (2009) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28870","name":"Agents + of Atlas: Turf Wars (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31681","name":"Agents + of Atlas: Turf Wars (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/99929","name":"Alien + (2021) #10 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12645","name":"Alpha + Flight (1983) #106"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59525","name":"The + Amazing Spider-Man (2017) #15 (Panosian Mighty Men Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103264","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50802","name":"Astonishing + X-Men (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50803","name":"Astonishing + X-Men (1999) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50804","name":"Astonishing + X-Men (1999) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6936","name":"Avengers + Annual (1967) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37353","name":"Avengers: + Citizen Kang (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57653","name":"Black + Knight (2015) #2 (Panosian Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7755","name":"Captain + America (1968) #374"}],"returned":20},"series":{"available":104,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1914/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/27720","name":"Absolute + Carnage Vs. Deadpool (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27588","name":"Adventures + of the X-Men (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6807","name":"Agents + of Atlas (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9197","name":"Agents + of Atlas: Turf Wars (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9373","name":"Agents + of Atlas: Turf Wars (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30863","name":"Alien + (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35576","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19016","name":"Astonishing + X-Men (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13411","name":"Avengers: + Citizen Kang (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20788","name":"Black + Knight (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3629","name":"Captain + America Annual (1971 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31061","name":"Captain + America: Sharon Carter (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26673","name":"Captain + Marvel (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13468","name":"Chaos + War One-Shots (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13258","name":"Chaos + War: God Squad (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29272","name":"Conan + Chronicles Epic Collection: Horrors Beneath The Stones (2020)"}],"returned":20},"stories":{"available":201,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1914/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12999","name":"Strange + Interlude","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14182","name":"Amazing + Spider-Man (1963) #376","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15333","name":"[Contents + Page]","type":"contents"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17418","name":"Boys'' + Night Out","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21114","name":"The + Walking Wounded","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21638","name":"","type":"table + of contents"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21639","name":"Pawns + of Senescence","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22018","name":"Enemies: A + Hate Story (Spirits of Venom, Part 3)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22626","name":"Cover + #22626","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A + Beginning","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28114","name":"Uncanny + X-Men (1963) #302","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28115","name":"Province","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29168","name":"The + Puzzle Quest","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29169","name":"The + Puzzle Box","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29230","name":"It''s + an All-Out Battle When...Bishop Goes Wild !","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29231","name":"Eyes + of a New York Woman","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29328","name":"X-MEN + (1991) #91","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29329","name":"Technical + Difficulties","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33724","name":"Cover + #33724","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37751","name":"Boys'' + Night Out","type":""}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1914/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/297","name":"Fall + of the Hulks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1914/dan_panosian?utm_campaign=apiRef&utm_source=abcd"}]},{"id":844,"firstName":"James","middleName":"","lastName":"Pascoe","suffix":"","fullName":"James + Pascoe","modified":"2007-01-01T00: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/844","comics":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/creators/844/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/1992","name":"Gambit + (2004) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2434","name":"Gambit: + Hath No Fury (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/99387","name":"Star + Wars Legends Epic Collection: The Empire Vol. 7 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/70327","name":"THOR: + HEROES RETURN OMNIBUS VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/437","name":"Weapon + X (2002) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18172","name":"X-Men + Chronicles (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93171","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52957","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"returned":10},"series":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/creators/844/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/777","name":"Gambit + (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1476","name":"Gambit: + Hath No Fury (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34256","name":"Star + Wars Legends Epic Collection: The Empire Vol. 7 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25698","name":"THOR: + HEROES RETURN OMNIBUS VOL. 2 HC (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men + Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31871","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19806","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1452","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (2005)"}],"returned":10},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/creators/844/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1785","name":"Interior + #1785","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3755","name":"2 + of 3 - Hath No Fury","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38625","name":"Beast","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/117492","name":"story + from X-Men: Age of Apocalypse - Omega (2015)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/156444","name":"story + from THOR: HEROES RETURN OMNIBUS VOL. 2 HC (2018) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186887","name":"story + from AGE OF APOCALYPSE: THE CHOSEN 1 (1995) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/207455","name":"story + from X-MEN: AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER (2021) #1 (BILLY + TAN COVER)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/219872","name":"story + from STAR WARS LEGENDS EPIC COLLECTION: THE EMPIRE VOL. 7 TPB (2022) #7","type":"interiorStory"}],"returned":8},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/844/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/creators/844/james_pascoe?utm_campaign=apiRef&utm_source=abcd"}]},{"id":19,"firstName":"Tim","middleName":"","lastName":"Sale","suffix":"","fullName":"Tim + Sale","modified":"2016-03-11T17:41:23-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/4bc69b1e6fabf","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/19","comics":{"available":90,"collectionURI":"http://gateway.marvel.com/v1/public/creators/19/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/7397","name":"Cable + (1993) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28486","name":"Captain + America: Reborn (2009) #2 (TIM SALE VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82323","name":"Captain + America: Sam Wilson - The Complete Collection Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21599","name":"Captain + America: White (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31745","name":"Captain + America: White (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53618","name":"Captain + America: White (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56575","name":"Captain + America: White (2015) #1 (Campbell Inhuman 50th Anniversary Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56576","name":"Captain + America: White (2015) #1 (Sale Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56577","name":"Captain + America: White (2015) #1 (Asrar Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56578","name":"Captain + America: White (2015) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53620","name":"Captain + America: White (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56579","name":"Captain + America: White (2015) #2 (Johnson Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53621","name":"Captain + America: White (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53622","name":"Captain + America: White (2015) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53623","name":"Captain + America: White (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53619","name":"CAPTAIN + AMERICA: WHITE HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57549","name":"Daredevil + (2015) #1 (Sale Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27414","name":"Daredevil + (1998) #501 (SALE VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/947","name":"Daredevil + Legends Vol. I: Daredevil: Yellow (Trade Paperback)"}],"returned":20},"series":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/creators/19/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/20468","name":"All-New + Hawkeye (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8213","name":"Captain + America: Reborn (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29245","name":"Captain + America: Sam Wilson - The Complete Collection Vol. 2 (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20065","name":"Captain + America: White (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10090","name":"Captain + America: White (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5216","name":"Captain + America: White (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20066","name":"CAPTAIN + AMERICA: WHITE HC (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20780","name":"Daredevil + (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/449","name":"Daredevil + (1998 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12","name":"Daredevil + Legends Vol. I: Daredevil: Yellow (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/377","name":"Daredevil: + Yellow (2001 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13249","name":"Daredevil: + Yellow (All-New Edition) (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6245","name":"Daredevil: + Yellow Premiere (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/342","name":"Hulk + Gray Vol. 1 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1200","name":"Hulk: + Gray (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7870","name":"Hulk: + Gray (2009 - Present)"}],"returned":20},"stories":{"available":142,"collectionURI":"http://gateway.marvel.com/v1/public/creators/19/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/189","name":"Spider-Man: + Blue is a lavish look back at a pivotal era — including the introduction of + Peter''s first love Gwen Stacy, his buddi","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/190","name":"Spider-Man: + Blue is a lavish look back at a pivotal era — including the introduction of + Peter''s first love Gwen Stacy, his buddi","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/465","name":"The + creators behind the best-selling \"Marvel Spectrum\" stories – DAREDEVIL: + YELLOW and SPIDER-MAN: BLUE – examine in new detail ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/466","name":"The + creators behind the best-selling \"Marvel Spectrum\" stories – DAREDEVIL: + YELLOW and SPIDER-MAN: BLUE – examine in new detail ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/481","name":"X-Men + Gambit and Wolverine are drawn together in London by a string of brutal slayings + that may mark the return of 19th-century ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/533","name":"Interior + #533","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/534","name":"Interior + #534","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/535","name":"Interior + #535","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/537","name":"Interior + #537","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/538","name":"Interior + #538","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/539","name":"Interior + #539","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/872","name":"HULK: + GRAY (2003) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/873","name":"Interior + #873","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/874","name":"HULK: + GRAY (2003) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/875","name":"Interior + #875","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2259","name":"HULK: + GRAY (2003) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2260","name":"Interior + #2260","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2335","name":"HULK: + GRAY (2003) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2336","name":"Interior + #2336","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2631","name":"HULK: + GRAY (2003) #4","type":"cover"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/19/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/19/tim_sale?utm_campaign=apiRef&utm_source=abcd"}]},{"id":4523,"firstName":"Val","middleName":"","lastName":"Semeiks","suffix":"","fullName":"Val + Semeiks","modified":"2007-01-01T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/60/4bb587849e5c7","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/4523","comics":{"available":41,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4523/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/22372","name":"Amazing + Spider-Man Family (2008) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22979","name":"Amazing + Spider-Man Family (2008) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23642","name":"Amazing + Spider-Man Family (2008) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24439","name":"Amazing + Spider-Man Family (2008) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/101280","name":"Conan + The Barbarian: The Original Marvel Years Omnibus Vol. 9 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/99836","name":"Generation + X Epic Collection: Emplate''s Revenge (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20982","name":"She-Hulk + (2005) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21190","name":"She-Hulk + (2005) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21341","name":"She-Hulk + (2005) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/98506","name":"She-Hulk + By Peter David Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15238","name":"Silver + Surfer (1987) #97"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76626","name":"Silver + Surfer Annual (1997) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75424","name":"Silver + Surfer Epic Collection: Inner Demons (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38126","name":"Spider-Man: + New York Stories (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28918","name":"Spider-Man: + Return of the Black Cat (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26472","name":"Spider-Man: + The Short Halloween (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28450","name":"Web + of Spider-Man (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28628","name":"Web + of Spider-Man (2009) #1 (ZOMBIE VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/31668","name":"Web + of Spider-Man (2009) #8"}],"returned":20},"series":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4523/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/5376","name":"Amazing + Spider-Man Family (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34683","name":"Conan + The Barbarian: The Original Marvel Years Omnibus Vol. 9 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34360","name":"Generation + X Epic Collection: Emplate''s Revenge (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/886","name":"She-Hulk + (2005 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33987","name":"She-Hulk + By Peter David Omnibus (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2288","name":"Silver + Surfer (1987 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27508","name":"Silver + Surfer Annual (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27123","name":"Silver + Surfer Epic Collection: Inner Demons (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13721","name":"Spider-Man: + New York Stories (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9603","name":"Spider-Man: + Return of the Black Cat (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8328","name":"Spider-Man: + The Short Halloween (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9234","name":"Web + of Spider-Man (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19793","name":"Wolverine + Epic Collection: The Dying Game (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34364","name":"Wolverine + Epic Collection: Tooth And Claw (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men + Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3637","name":"X-Men + Unlimited (1993 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19802","name":"X-Men/Avengers: + Onslaught (2015)"}],"returned":20},"stories":{"available":51,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4523/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28568","name":"The + Helix of an Age Foretold","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28968","name":"Of + Mythic Metal Forged","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30947","name":"Temptation: + Greed","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38614","name":"Horse + Latitude","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38632","name":"Angel","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38636","name":"The + Rescue of Chamber","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/45394","name":"1 + of 1 Here Today","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/46811","name":"Interior + #46811","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47032","name":"Excalibur + 100, Wolverine 104, X-Factor 125-126, Amazing Spider-Man 415, Green Goblin + 12, Spider-Man 72, Punisher 11, X-Man 18, X","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47133","name":"Interior + #47133","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49246","name":"AMAZING + SPIDER-MAN FAMILY (2008) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49247","name":"Venom: + Lethal Protector 5, Spider-Man: Mysterio Manifesto 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51003","name":"AMAZING + SPIDER-MAN FAMILY (2008) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51004","name":"Venom: + Lethal Protector 6, Spider-Man: Mysterio Manifesto 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52357","name":"AMAZING + SPIDER-MAN FAMILY (2008) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52358","name":"Interior + #52358","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53971","name":"AMAZING + SPIDER-MAN FAMILY (2008) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53972","name":"Interior + #53972","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54680","name":"Interior + #54680","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/58250","name":"Interior + #58250","type":"interiorStory"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4523/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/4523/val_semeiks?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1249,"firstName":"Steve","middleName":"","lastName":"Skroce","suffix":"","fullName":"Steve + Skroce","modified":"2011-12-09T15:23:30-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/1249","comics":{"available":74,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1249/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/95007","name":"Ben + Reilly: Spider-Man (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94944","name":"Ben + Reilly: Spider-Man (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94945","name":"Ben + Reilly: Spider-Man (2022) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94946","name":"Ben + Reilly: Spider-Man (2022) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94947","name":"Ben + Reilly: Spider-Man (2022) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94948","name":"Ben + Reilly: Spider-Man (2022) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91649","name":"Cable + (2020) #6 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7386","name":"Cable + (1993) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7387","name":"Cable + (1993) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7388","name":"Cable + (1993) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7389","name":"Cable + (1993) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7390","name":"Cable + (1993) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7391","name":"Cable + (1993) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7392","name":"Cable + (1993) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7454","name":"Cable + (1993) #75"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75148","name":"Cable + & X-Force Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/98408","name":"Clobberin'' + Time (2023) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102615","name":"Clobberin'' + Time (2023) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102616","name":"Clobberin'' + Time (2023) #1 (Variant)"}],"returned":20},"series":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1249/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/32335","name":"Ben + Reilly: Spider-Man (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32364","name":"Ben + Reilly: Spider-Man (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28038","name":"Cable + (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27027","name":"Cable + & X-Force Omnibus (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33955","name":"Clobberin'' + Time (2023 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32871","name":"Death + Of Doctor Strange: Avengers (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27053","name":"Decades: + Marvel In The ''90s - The Mutant X-plosion (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21593","name":"Gambit + (1999 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24278","name":"Immortal + Hulk (2018 - 2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19920","name":"MARVEL + FIRSTS: THE 1990S OMNIBUS HC (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13695","name":"Spider-Man + Unlimited (1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16291","name":"Spider-Man: + The Complete Ben Reilly Epic Book 6 (2012 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1987","name":"The + Amazing Spider-Man (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24104","name":"Wolverine + Epic Collection: Blood Debt (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15269","name":"X-Man: + Dance with the Devil (2011 - Present)"}],"returned":20},"stories":{"available":109,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1249/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24195","name":"CABLE + (1993) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24197","name":"CABLE + (1993) #16","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24198","name":"The + Phalanx Sanction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24199","name":"CABLE + (1993) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24200","name":"The + Dark Ride Part 1: The Calling","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24201","name":"CABLE + (1993) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24202","name":"The + Dark Ride Part 2: Judgement Day","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24203","name":"CABLE + (1993) #19","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24204","name":"The + Dark Ride Part 3: In the Name of the Father","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24339","name":"Cable + vs. Wolverine","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24340","name":"Cable + vs. Apocalypse","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24341","name":"Cable + vs. Stryfe","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28676","name":"Revolution","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28677","name":"Blood + Debt Part 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28678","name":"Wolverine + With Steve Skroce","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28679","name":"Cover + #28679","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28680","name":"Blood + Debt Part 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28681","name":"Cover + #28681","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28682","name":"Blood + Debt Part 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28683","name":"Cover + #28683","type":"cover"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1249/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1249/steve_skroce?utm_campaign=apiRef&utm_source=abcd"}]},{"id":350,"firstName":"Richard","middleName":"","lastName":"Starkings","suffix":"","fullName":"Richard + Starkings","modified":"2013-01-31T23:23:04-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/a0/4bc3335779e4b","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","comics":{"available":1965,"collectionURI":"http://gateway.marvel.com/v1/public/creators/350/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/66978","name":"Adventures + of Captain America (1991) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66979","name":"Adventures + of Captain America (1991) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66980","name":"Adventures + of Captain America (1991) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66981","name":"Adventures + of Captain America (1991) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37260","name":"Alias + (2001) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37261","name":"Alias + (2001) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37262","name":"Alias + (2001) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37263","name":"Alias + (2001) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37255","name":"Alias + Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/393","name":"Alpha + Flight (2004) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/456","name":"Alpha + Flight (2004) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/616","name":"Alpha + Flight (2004) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/677","name":"Alpha + Flight (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/613","name":"Alpha + Flight (2004) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/572","name":"Alpha + Flight (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/790","name":"Alpha + Flight (2004) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/866","name":"Alpha + Flight (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67","name":"Alpha + Flight (2004) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1465","name":"Alpha + Flight (2004) #10"}],"returned":20},"series":{"available":404,"collectionURI":"http://gateway.marvel.com/v1/public/creators/350/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/24227","name":"Adventures + of Captain America (1991 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13383","name":"Alias + Omnibus (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/719","name":"Alpha + Flight (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23794","name":"Amazing + Spider-Man Annual (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35576","name":"Amazing + Spider-Man Epic Collection: Invasion Of The Spider-Slayers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32029","name":"Amazing + Spider-Man Epic Collection: Lifetheft (2021)"},{"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/3621","name":"Avengers + (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26449","name":"Avengers + Annual (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26448","name":"Avengers + Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1496","name":"Avengers + Assemble Vol. 2 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"}],"returned":20},"stories":{"available":2223,"collectionURI":"http://gateway.marvel.com/v1/public/creators/350/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/168","name":"In + this collection, Wolverine probes the dark and seamy underbelly of the city, + and guts it. Placing himself in the center of a","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/474","name":"Interior + #474","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/476","name":"5 + of 6 - Breakout!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/487","name":"Interior + #487","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/528","name":"Interior + #528","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/533","name":"Interior + #533","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/534","name":"Interior + #534","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/535","name":"Interior + #535","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/537","name":"Interior + #537","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/538","name":"Interior + #538","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/539","name":"Interior + #539","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/872","name":"HULK: + GRAY (2003) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/874","name":"HULK: + GRAY (2003) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/909","name":"Interior + #909","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/911","name":"Interior + #911","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1024","name":"Avengers + (1998) #80","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1026","name":"Avengers + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1029","name":"Interior + #1029","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1031","name":"Interior + #1031","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1041","name":"Avengers + (1998) #502","type":"interiorStory"}],"returned":20},"events":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/creators/350/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers + Disassembled"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy + of the State"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/297","name":"Fall + of the Hulks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":13},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/350/richard_starkings?utm_campaign=apiRef&utm_source=abcd"}]},{"id":5756,"firstName":"Ashley","middleName":"","lastName":"Underwood","suffix":"","fullName":"Ashley + Underwood","modified":"2007-01-01T00: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/5756","comics":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5756/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/83505","name":"Hellstorm: + Prince of Lies (1993) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84493","name":"Hellstrom: + Prince Of Lies (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93171","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52957","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (Trade Paperback)"}],"returned":5},"series":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5756/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/29524","name":"Hellstorm: + Prince of Lies (1993 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29770","name":"Hellstrom: + Prince Of Lies (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31871","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19806","name":"X-MEN: + AGE OF APOCALYPSE VOL. 3 - OMEGA TPB (2015)"}],"returned":5},"stories":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5756/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/117492","name":"story + from X-Men: Age of Apocalypse - Omega (2015)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/184785","name":"story + from Hellstorm: Prince of Lies (1993) #10","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186786","name":"story + from HELLSTROM: PRINCE OF LIES TPB (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186887","name":"story + from AGE OF APOCALYPSE: THE CHOSEN 1 (1995) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/207455","name":"story + from X-MEN: AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER (2021) #1 (BILLY + TAN COVER)","type":"interiorStory"}],"returned":5},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5756/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/creators/5756/ashley_underwood?utm_campaign=apiRef&utm_source=abcd"}]},{"id":2030,"firstName":"Bob","middleName":"","lastName":"Wiacek","suffix":"","fullName":"Bob + Wiacek","modified":"2018-07-24T15:12:24-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/30/4bc35ee8cc081","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/2030","comics":{"available":304,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2030/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/82258","name":"Acts + Of Vengeance: Spider-Man & The X-Men (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/92859","name":"Aliens: + The Original Years Omnibus Vol. 3 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53307","name":"ALL-NEW + X-MEN VOL. 3 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12674","name":"Alpha + Flight (1983) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12675","name":"Alpha + Flight (1983) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12677","name":"Alpha + Flight (1983) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12681","name":"Alpha + Flight (1983) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12682","name":"Alpha + Flight (1983) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12686","name":"Alpha + Flight (1983) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12689","name":"Alpha + Flight (1983) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16895","name":"Amazing + Spider-Man Annual (1964) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63140","name":"Amazing + Spider-Man Epic Collection: Kraven''s Last Hunt (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6930","name":"Avengers + Annual (1967) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17844","name":"West + Coast Avengers Annual (1986) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82262","name":"AVENGERS + WEST COAST EPIC COLLECTION: TALES TO ASTONISH TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71061","name":"Avengers/Squadron + Supreme Annual (1998) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7393","name":"Cable + (1993) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7404","name":"Cable + (1993) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20946","name":"Cable + Classic Vol. 1 (Trade Paperback)"}],"returned":20},"series":{"available":110,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2030/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/29180","name":"Acts + Of Vengeance: Spider-Man & The X-Men (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31726","name":"Aliens: + The Original Years Omnibus Vol. 3 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19989","name":"ALL-NEW + X-MEN VOL. 3 HC (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23112","name":"Amazing + Spider-Man Epic Collection: Kraven''s Last Hunt (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29184","name":"AVENGERS + WEST COAST EPIC COLLECTION: TALES TO ASTONISH TPB (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25955","name":"Avengers/Squadron + Supreme Annual (1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4059","name":"Cable + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1997","name":"Captain + America (1998 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2000","name":"Captain + Marvel (1968 - 1979)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/690","name":"Captain + Marvel (2000 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30952","name":"Captain + Marvel vs. Rogue (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29764","name":"Captain + Marvel: The Many Lives of Carol Danvers (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34246","name":"Daredevil + Epic Collection: It Comes With The Claws (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3740","name":"Doctor + Strange (1974 - 1988)"}],"returned":20},"stories":{"available":361,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2030/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15281","name":"The + End of the Inhumans...and the Fantastic Four","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16993","name":"THOR + (1966) #348","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16994","name":"The + Dark and the Light","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17389","name":"The + Day Death Died","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18307","name":"Crisis!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18318","name":"Captain + Marvel.. Wanted!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18320","name":"The + War Of The Three Galaxies!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18324","name":"Beneath + The Mask...A Man!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18325","name":"Cover + #18325","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18326","name":"Survival + Quest!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18327","name":"Cover + #18327","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18328","name":"Star + Burst","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18331","name":"Cover + #18331","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19186","name":"Pieces + of Hate!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19879","name":"Blood + Feud!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20624","name":"Cover + #20624","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20625","name":"The + All-New Ms. Marvel","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20966","name":"Cover + #20966","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21019","name":"Cover + #21019","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21178","name":"Blind + Date","type":"interiorStory"}],"returned":20},"events":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2030/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":9},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/2030/bob_wiacek?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_a_comic_s_events_by_ID.yml b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_events_by_ID.yml new file mode 100644 index 0000000..7399c69 --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_events_by_ID.yml @@ -0,0 +1,131 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics/17701/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - ec401cb70fd4bc1274245015adcb58890855f0ed + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:24:28 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"ec401cb70fd4bc1274245015adcb58890855f0ed","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Apocalypse?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-06-13T11:42:39-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":111,"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","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/13348","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/11063","name":"Terry + Kevin 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/3572","name":"Kelly + Corvese","role":"editor"}],"returned":20},"characters":{"available":91,"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/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009210","name":"Brute"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","name":"Callisto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"}],"returned":20},"stories":{"available":197,"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":"X-Men: + Alpha (1994) #1","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 Bloodlines (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales + from the Age of Apocalyspse: By the Light (1996)"},{"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 (1995)"},{"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"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_a_comic_s_stories_by_ID.yml b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_stories_by_ID.yml new file mode 100644 index 0000000..d2330c0 --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_a_comic_s_stories_by_ID.yml @@ -0,0 +1,59 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics/1332/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 19c17fa6ba5e4ff29139b28dc692c9f8a5dd5b46 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 02:21:05 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"19c17fa6ba5e4ff29139b28dc692c9f8a5dd5b46","data":{"offset":0,"limit":20,"total":3,"count":3,"results":[{"id":15472,"title":"Days + of Future Past","description":"Rachel Summers sends Kitty Pryde back in time + from 2013 to warn the X-Men that the new Brotherhood of Evil Mutants will + try to kill Senator Kelly and begin a chain of events that spells doom for + mutants.","resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/creators","items":[],"returned":0},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/characters","items":[{"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/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","name":"Pyro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":10},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/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/1327","name":"X-Men: + Days of Future Past (2004)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","name":"X-Men: + Days of Future Past (Trade Paperback)"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"}},{"id":27788,"title":"Mind Out of Time!","description":"The + Brotherhood make its play against Senator Kelly; Rachel Summers (in Kitty + Pryde''s body) helps the X-Men defeat Mystique and her crew (thus changing + the future); Kitty returns from 2013.","resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27788/creators","items":[],"returned":0},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27788/characters","items":[{"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/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","name":"Pyro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":10},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27788/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/1327","name":"X-Men: + Days of Future Past (2004)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27788/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","name":"X-Men: + Days of Future Past (Trade Paperback)"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27788/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"}},{"id":65738,"title":"X-MEN: DAYS OF FUTURE PAST TPB 0 + cover","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/65738","type":"cover","modified":"2017-02-28T14:30:28-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/65738/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/65738/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/65738/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1327","name":"X-Men: + Days of Future Past (2004)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/65738/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","name":"X-Men: + Days of Future Past (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/65738/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","name":"X-Men: + Days of Future Past (Trade Paperback)"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_comics.yml b/spec/vcr/Harkness_ComicResource/gets_comics.yml new file mode 100644 index 0000000..ea1e8e6 --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_comics.yml @@ -0,0 +1,421 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - e42f628b04877d8d436fa8a4a7437cba0267474b + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 15:24:46 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"e42f628b04877d8d436fa8a4a7437cba0267474b","data":{"offset":0,"limit":20,"total":54291,"count":20,"results":[{"id":82967,"digitalId":0,"title":"Marvel + Previews (2017)","issueNumber":0,"variantDescription":"","description":"","modified":"2019-11-07T08:46:15-0500","isbn":"","upc":"75960608839302811","diamondCode":"","ean":"","issn":"","format":"","pageCount":112,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/82967","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/82967/marvel_previews_2017?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/23665","name":"Marvel + Previews (2017 - Present)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82965","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82970","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82969","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74697","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72736","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75668","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65364","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65158","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65028","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75662","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74320","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73776","name":"Marvel + Previews (2017)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2099-10-30T00:00:00-0500"},{"type":"focDate","date":"2019-10-07T00:00:00-0400"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"images":[],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82967/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10021","name":"Jim + Nausedas","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82967/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82967/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/183698","name":"cover + from Marvel Previews (2017)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/183699","name":"story + from Marvel Previews (2017)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82967/events","items":[],"returned":0}},{"id":82965,"digitalId":0,"title":"Marvel + Previews (2017)","issueNumber":0,"variantDescription":"","description":"","modified":"2019-08-21T17:11:27-0400","isbn":"","upc":"75960608839302611","diamondCode":"JUL190068","ean":"","issn":"","format":"","pageCount":152,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/82965","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/82965/marvel_previews_2017?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/23665","name":"Marvel + Previews (2017 - Present)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82967","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82970","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82969","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74697","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72736","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75668","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65364","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65158","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65028","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75662","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74320","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73776","name":"Marvel + Previews (2017)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2099-08-28T00:00:00-0500"},{"type":"focDate","date":"2019-08-05T00:00:00-0400"}],"prices":[{"type":"printPrice","price":0}],"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/82965/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82965/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82965/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82965/events","items":[],"returned":0}},{"id":82970,"digitalId":52952,"title":"Marvel + Previews (2017)","issueNumber":0,"variantDescription":"","description":"","modified":"2020-02-07T09:35:32-0500","isbn":"","upc":"75960608839303111","diamondCode":"","ean":"","issn":"","format":"","pageCount":112,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/82970","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/82970/marvel_previews_2017?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Marvel-Previews-0/digital-comic/52952?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=52952&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/52952?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/23665","name":"Marvel + Previews (2017 - Present)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82967","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82965","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82969","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74697","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72736","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75668","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65364","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65158","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65028","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75662","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/74320","name":"Marvel + Previews (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73776","name":"Marvel + Previews (2017)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2099-01-29T00:00:00-0500"},{"type":"focDate","date":"2020-01-06T00:00:00-0500"},{"type":"unlimitedDate","date":"2020-01-29T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2020-01-29T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/5e3d7536c8ada","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/5e3d7536c8ada","extension":"jpg"}],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82970/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10021","name":"Jim + Nausedas","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82970/characters","items":[],"returned":0},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82970/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/183704","name":"cover + from Marvel Previews (2017)","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/82970/events","items":[],"returned":0}},{"id":1308,"digitalId":0,"title":"Marvel + Age Spider-Man Vol. 2: Everyday Hero (Digest)","issueNumber":0,"variantDescription":"","description":"\"The + Marvel Age of Comics continues! This time around, Spidey meets his match against + such classic villains as Electro and the Lizard, and faces the return of one + of his first foes: the Vulture! Plus: Spider-Man vs. the Living Brain, Peter + Parker''s fight with Flash Thompson, and the wall-crawler tackles the high-flying + Human Torch!\"","modified":"2018-01-22T15:42:11-0500","isbn":"0-7851-1451-3","upc":"5960611451-00111","diamondCode":"","ean":"","issn":"","format":"Digest","pageCount":96,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\"The + Marvel Age of Comics continues! This time around, Spidey meets his match against + such classic villains as Electro and the Lizard, and faces the return of one + of his first foes: the Vulture! Plus: Spider-Man vs. the Living Brain, Peter + Parker''s fight with Flash Thompson, and the wall-crawler tackles the high-flying + Human Torch!\""}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1308","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1308/marvel_age_spider-man_vol_2_everyday_hero_digest?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1242","name":"Marvel + Age Spider-Man Vol. 2: Everyday Hero (2004)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/546","name":"Marvel + Age Spider-Man (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/610","name":"Marvel + Age Spider-Man (2004) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/728","name":"Marvel + Age Spider-Man (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/681","name":"Marvel + Age Spider-Man (2004) #5"}],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":5.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/4bc665483c3aa","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/90/5a664c954a55b","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/80/5a6648f8aaccc","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/c0/5a6648efbc46c","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/00/5a6648c368f52","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/40/4bc689a4ce796","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/c0/4bc684889f8ed","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4bc6809bdc81b","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/4bc665483c3aa","extension":"jpg"}],"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1308/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/434","name":"Michael + Ryan","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/424","name":"Udon + Comics","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/692","name":"Pat + Davidson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/689","name":"Derek + Fridolfs","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6743","name":"Rich + Perrotta","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/682","name":"Todd + Dezago","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/326","name":"Daniel + Quantz","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/691","name":"Jonboy + Meyers","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/688","name":"Michael + OHare","role":"penciller"}],"returned":10},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1308/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"}],"returned":1},"stories":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1308/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2759","name":"Cover + #2759","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2760","name":"Interior + #2760","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2763","name":"Cover + #2763","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2764","name":"Interior + #2764","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2769","name":"Cover + #2769","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2770","name":"Interior + #2770","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2771","name":"Cover + #2771","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2772","name":"Interior + #2772","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65682","name":"MARVEL + AGE SPIDER-MAN VOL. 2: EVERYDAY HERO 0 cover","type":"cover"}],"returned":9},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1308/events","items":[],"returned":0}},{"id":1003,"digitalId":0,"title":"Sentry, + the (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"On + the edge of alcoholism and a failed marriage, Bob Reynolds wakes up to discover + his true nature. A forgotten hero, he must unravel the conspiracy to erase + his memory from mankind before an evil entity returns.","modified":"-0001-11-30T00:00:00-0500","isbn":"0-7851-0799-1","upc":"","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":240,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"On + the edge of alcoholism and a failed marriage, Bob Reynolds wakes up to discover + his true nature. A forgotten hero, he must unravel the conspiracy to erase + his memory from mankind before an evil entity returns."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1003","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1003/sentry_the_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/65","name":"Sentry, + the (1999)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/4bc66d78f1bee","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/4bc66d78f1bee","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1003/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/55","name":"Paul + Jenkins","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/56","name":"Jae + Lee","role":"penciller"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1003/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1003/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66","name":"On + the edge of alcoholism and a failed marriage, Bob Reynolds wakes up to discover + his true nature. A forgotten hero, he must un","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65143","name":"SENTRY, + THE TPB 0 cover","type":"cover"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1003/events","items":[],"returned":0}},{"id":331,"digitalId":0,"title":"Gun + Theory (2003) #4","issueNumber":4,"variantDescription":"","description":"The + phone rings, and killer-for-hire Harvey embarks on another hit. But nothing''s + going right this job. There''s little room for error in the business of killing + - so what happens when one occurs?\r\n32 PGS./ PARENTAL ADVISORY ...$2.50","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605468-00111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + phone rings, and killer-for-hire Harvey embarks on another hit. But nothing''s + going right this job. There''s little room for error in the business of killing + - so what happens when one occurs?\r\n32 PGS./ PARENTAL ADVISORY ...$2.50"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/331","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/331/gun_theory_2003_4?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/649","name":"Gun + Theory (2003)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.5}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/4bc69f11baf75","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/4bc69f11baf75","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/331/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/331/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/331/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2263","name":"Interior + #2263","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65423","name":"GUN + THEORY 4 cover","type":"cover"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/331/events","items":[],"returned":0}},{"id":428,"digitalId":0,"title":"Ant-Man + (2003) #4","issueNumber":4,"variantDescription":"","description":"","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605482-00411","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Ant-Man + digs deeper into finding out who is leaking those dirty little secrets that + are threatening our national security. And who''s better at uncovering dirty + LITTLE secrets than him??"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/428","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/428/ant-man_2003_4?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/551","name":"Ant-Man + (2003 - 2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/20/4bc697c680890","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/20/4bc697c680890","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/428/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/600","name":"Clayton + Crain","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/344","name":"Daniel + Way","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/428/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/428/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2331","name":"Cover + #2331","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2332","name":"Interior + #2332","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/428/events","items":[],"returned":0}},{"id":291,"digitalId":0,"title":"Ant-Man + (2003) #1","issueNumber":1,"variantDescription":"","description":"Size does + matter. And no one knows this more than Hank Pym - a.k.a. Ant-Man. Got a + problem with Galactus? Call the FF. Got a problem with, say, mind-controlled + cockroaches? Then Ant-Man''s your man! And needless to say, it''s done a number + on our diminutive hero''s self-esteem. When Ant-Man is tapped to infiltrate + an international spy ring that has been siphoning secrets out of Washington, + he jumps at the chance - unaware that he''s being used as a pawn in a larger + game of espionage.\r\n32 PGS./PARENTAL ADVISORY...$2.99","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605396-01811","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Size + does matter. And no one knows this more than Hank Pym - a.k.a. Ant-Man. Got + a problem with Galactus? Call the FF. Got a problem with, say, mind-controlled + cockroaches? Then Ant-Man''s your man! And needless to say, it''s done a number + on our diminutive hero''s self-esteem. When Ant-Man is tapped to infiltrate + an international spy ring that has been siphoning secrets out of Washington, + he jumps at the chance - unaware that he''s being used as a pawn in a larger + game of espionage.\r\n32 PGS./PARENTAL ADVISORY...$2.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/291","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/291/ant-man_2003_1?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/551","name":"Ant-Man + (2003 - 2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/4bc6a2497684e","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/4bc6a2497684e","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/291/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/600","name":"Clayton + Crain","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/344","name":"Daniel + Way","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/291/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/291/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1806","name":"Cover + #1806","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1807","name":"Interior + #1807","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/291/events","items":[],"returned":0}},{"id":376,"digitalId":0,"title":"Ant-Man + (2003) #3","issueNumber":3,"variantDescription":"","description":"","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605396-02011","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"When + Hank Pym - a.k.a. Ant-Man - is tapped by U.S. Intelligence to infiltrate an + international spy ring that has been siphoning secrets out of Washington, + the diminutive hero jumps at the chance - unaware that he''s being used as + a pawn in a larger game of espionage.\r32 PGS./PARENTAL ADVISORY...$2.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/376","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/376/ant-man_2003_3?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/551","name":"Ant-Man + (2003 - 2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/70/4bc69c7e9b9d7","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/70/4bc69c7e9b9d7","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/376/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/600","name":"Clayton + Crain","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/344","name":"Daniel + Way","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/376/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/376/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1810","name":"Cover + #1810","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1811","name":"Interior + #1811","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/376/events","items":[],"returned":0}},{"id":1749,"digitalId":0,"title":"Official + Handbook of the Marvel Universe (2004) #11 (X-MEN - AGE OF APOCALYPSE)","issueNumber":11,"variantDescription":"X-MEN + - AGE OF APOCALYPSE","description":"","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605625-00111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Your + complete guide to the epic saga! This Official Handbook includes in-depth + bios on more than 40 denizens of the Age of Apocalypse - from Abyss to Weapon + X! Plus: An all-new cover by superstar-in-waiting Mark Brooks, digitally painted + by Justin Ponsor.\r
48 PGS./Marvel PSR ...$3.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1749","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/1749/official_handbook_of_the_marvel_universe_2004_11_x-men_-_age_of_apocalypse/x-men_-_age_of_apocalypse?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/b0/4bc6494ed6eb4","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/b0/4bc6494ed6eb4","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1749/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/684","name":"Mike + Raicht","role":"writer"}],"returned":2},"characters":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1749/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010975","name":"Shadowcat + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010976","name":"Silver + Samurai (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009636","name":"Sunfire"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"}],"returned":14},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1749/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4153","name":"Cover + #4153","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4154","name":"Interior + #4154","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1749/events","items":[],"returned":0}},{"id":1158,"digitalId":0,"title":"ULTIMATE + X-MEN VOL. 5: ULTIMATE WAR TPB (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"The + Ultimates vs. the Ultimate X-Men: the battle begins. When the X-Men do the + worst thing they could to humanity, the government orders Captain America, + Iron Man, Thor and the rest of the Ultimates to bring them down. A small but + lethal army, the Ultimates were created to face these and other newly rising + threats to mankind. But the X-Men''s founder, Professor X, hasn''t been training + his students for nothing -- and the youngs mutants just might take out the + Ultimates first.","modified":"2018-03-12T16:56:16-0400","isbn":"0-7851-1129-8","upc":"","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":112,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + Ultimates vs. the Ultimate X-Men: the battle begins. When the X-Men do the + worst thing they could to humanity, the government orders Captain America, + Iron Man, Thor and the rest of the Ultimates to bring them down. A small but + lethal army, the Ultimates were created to face these and other newly rising + threats to mankind. But the X-Men''s founder, Professor X, hasn''t been training + his students for nothing -- and the youngs mutants just might take out the + Ultimates first."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1158","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1158/ultimate_x-men_vol_5_ultimate_war_tpb_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/216","name":"ULTIMATE + X-MEN VOL. 5: ULTIMATE WAR TPB (1999)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18477","name":"Ultimate + War (2003) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18476","name":"Ultimate + War (2003) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18475","name":"Ultimate + War (2003) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18474","name":"Ultimate + War (2003) #1"}],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"1961-01-01T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/f0/4bc6670c80007","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/f0/4bc6670c80007","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1158/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6170","name":"Olivier + Coipel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike + Deodato","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/181","name":"Geoff + Johns","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/52","name":"Bruce + Jones","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/88","name":"Mark + Millar","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/479","name":"Paul + Mounts","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"}],"returned":9},"characters":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1158/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010908","name":"Beast + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010911","name":"Black + Widow (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010913","name":"Captain + America (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010917","name":"Colossus + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011131","name":"Hawkeye + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011005","name":"Hulk + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010933","name":"Iceman + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010946","name":"Jean + Grey (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010943","name":"Magneto + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011007","name":"Nick + Fury (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010963","name":"Quicksilver + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010966","name":"Rogue + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010971","name":"Scarlet + Witch (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010978","name":"Storm + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011025","name":"Thor + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009689","name":"Vanisher + (Ultimate)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010992","name":"Wasp + (Ultimate)"}],"returned":17},"stories":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1158/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/270","name":"The + Ultimates vs. the Ultimate X-Men: the battle begins. When the X-Men do the + worst thing they could to humanity, the governmen","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39348","name":"Interior + #39348","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39349","name":"Free + Preview of Hulk #50","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39351","name":"Interior + #39351","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39352","name":"Free + Preview of Hulk #50","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39354","name":"Interior + #39354","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39355","name":"Free + Preview of Avengers 65","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/39357","name":"Interior + #39357","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65260","name":"ULTIMATE + X-MEN VOL. 5: ULTIMATE WAR 0 cover","type":"cover"}],"returned":9},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1158/events","items":[],"returned":0}},{"id":1332,"digitalId":0,"title":"X-Men: + Days of Future Past (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"\"Re-live + the legendary first journey into the dystopian future of 2013 - where Sentinels + stalk the Earth, and the X-Men are humanity''s only hope...until they die! + Also featuring the first appearance of Alpha Flight, the return of the Wendigo, + the history of the X-Men from Cyclops himself...and a demon for Christmas!? + \"","modified":"2017-02-28T14:52:22-0500","isbn":"0-7851-1560-9","upc":"5960611560-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":144,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"\"Re-live + the legendary first journey into the dystopian future of 2013 - where Sentinels + stalk the Earth, and the X-Men are humanity''s only hope...until they die! + Also featuring the first appearance of Alpha Flight, the return of the Wendigo, + the history of the X-Men from Cyclops himself...and a demon for Christmas!? + \""}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1332/x-men_days_of_future_past_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1327","name":"X-Men: + Days of Future Past (2004)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13683","name":"Uncanny + X-Men (1963) #142"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"}],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/58b5cfb6d5239","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/58b5cfb6d5239","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/b0/4bc66463ef7f0","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/creators","items":[],"returned":0},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/characters","items":[{"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/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","name":"Pyro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":10},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27788","name":"Mind + Out of Time!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65738","name":"X-MEN: + DAYS OF FUTURE PAST TPB 0 cover","type":"cover"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1332/events","items":[],"returned":0}},{"id":1220,"digitalId":0,"title":"Amazing + Spider-Man 500 Covers Slipcase - Book II (Trade Paperback)","issueNumber":0,"variantDescription":"","description":null,"modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1220","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1220/amazing_spider-man_500_covers_slipcase_-_book_ii_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/277","name":"Amazing + Spider-Man 500 Covers Slipcase - Book II (2003)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0}],"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/1220/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1220/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1220/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/351","name":"Interior + #351","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65310","name":"AMAZING + SPIDER-MAN 500 COVERS SLIPCASE - BOOK II 0 cover","type":"cover"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1220/events","items":[],"returned":0}},{"id":3627,"digitalId":0,"title":"Storm + (2006)","issueNumber":0,"variantDescription":"","description":"#N/A","modified":"2015-01-29T20:04:55-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + epic, untold love story between Marvel''s two pre-eminent Black super heroes + -- Storm and the Black Panther -- is finally told, as only New York Times + best-selling author Eric Jerome Dickey can do it! An orphaned street urchin, + living by her wits on the unforgiving plains of Africa as she struggles to + harness her slowly-developing mutant powers...A warrior Prince, embarking + on his rite of passage as he ponders the great responsibility in his future...And + a crew of ruthless mercenaries who''ll stop at nothing to capture an elusive + creature of legend -- the fabled wind-rider. What sparks occur when their + paths intersect? Don''t miss out on this story, True Believer, as it builds + to a July Event that will shake the entire Marvel Universe.\r
\r
32 + PGS./T+ SUGGESTED FOR TEENS AND UP ...$2.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/3627","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/3627/storm_2006?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/357","name":"Storm + (2006)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/4bc5fe7a308d7","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/4bc5fe7a308d7","extension":"jpg"}],"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/3627/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/370","name":"Eric + Jerome Dickey","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/371","name":"David + Hine","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/243","name":"Mike + Mayhew","role":"penciller (cover)"}],"returned":3},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/3627/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/3627/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/496","name":"Cover + #496","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/497","name":"Interior + #497","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/3627/events","items":[],"returned":0}},{"id":384,"digitalId":0,"title":"Gun + Theory (2003) #3","issueNumber":3,"variantDescription":"","description":"The + phone rings, and killer-for-hire Harvey embarks on another hit. But nothing''s + going right this job. There''s little room for error in the business of killing + - so what happens when one occurs?\r\n\r\n32 PGS./ PARENTAL ADVISORY ...$2.50","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605492-00411","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + phone rings, and killer-for-hire Harvey embarks on another hit. But nothing''s + going right this job. There''s little room for error in the business of killing + - so what happens when one occurs?\r\n\r\n32 PGS./ PARENTAL ADVISORY ...$2.50"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/384","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/384/gun_theory_2003_3?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/649","name":"Gun + Theory (2003)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.5}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/4bc69f11baf75","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/60/4bc69f11baf75","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/384/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/576","name":"Jon + Proctor","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/344","name":"Daniel + Way","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/384/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/384/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2538","name":"Cover + #2538","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2539","name":"Interior + #2539","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/384/events","items":[],"returned":0}},{"id":1590,"digitalId":0,"title":"Official + Handbook of the Marvel Universe (2004) #9 (THE WOMEN OF MARVEL)","issueNumber":9,"variantDescription":"THE + WOMEN OF MARVEL","description":"Marvel''s leading ladies take center stage! + This Official Handbook includes in-depth bios on more than 40 of the House''s + most powerful women warriors - from Araña to Vindicator! Plus: an all-new + cover by superstar artist Greg Land!","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605678-00111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Marvel''s + leading ladies take center stage! This Official Handbook includes in-depth + bios on more than 40 of the House''s most powerful women warriors - from Araña + to Vindicator! Plus: an all-new cover by superstar artist Greg Land!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1590","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/1590/official_handbook_of_the_marvel_universe_2004_9_the_women_of_marvel/the_women_of_marvel?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/b0/4c7d666c0e58a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/b0/4c7d666c0e58a","extension":"jpg"}],"creators":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1590/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/887","name":"Ronald + Byrd","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/902","name":"Jeff + Christiansen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/919","name":"Jonathan + Coupersmartt","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/903","name":"Anthony + Flamini","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/888","name":"Michael + Hoskin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/898","name":"Bill + Lentz","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/897","name":"Sean + Mcquaid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/394","name":"Eric + J. Moreels","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/899","name":"Mark + OEnglish","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/896","name":"Stuart + Vandal","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/425","name":"Greg + Land","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/500","name":"Christopher + Sotomayor","role":"colorist"}],"returned":12},"characters":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1590/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010975","name":"Shadowcat + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010976","name":"Silver + Samurai (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009636","name":"Sunfire"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"}],"returned":14},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1590/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4513","name":"Cover + #4513","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4514","name":"Interior + #4514","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1590/events","items":[],"returned":0}},{"id":183,"digitalId":0,"title":"Startling + Stories: The Incorrigible Hulk (2004) #1","issueNumber":1,"variantDescription":"","description":"","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605429-00811","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"For + Doctor Bruce Banner life is anything but normal. But what happens when two + women get between him and his alter ego, the Incorrigible Hulk? Hulk confused! + \r\nIndy superstar Peter Bagge (THE MEGALOMANIACAL SPIDER-MAN) takes a satirical + jab at the Hulk mythos with a tale of dames, debauchery and destruction.\r\n32 + PGS./MARVEL PSR...$2.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/183","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/183/startling_stories_the_incorrigible_hulk_2004_1?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/565","name":"Startling + Stories: The Incorrigible Hulk (2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00: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":[],"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/183/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6291","name":"Peter + Bagge","role":"penciller (cover)"}],"returned":1},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/183/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009351","name":"Hulk"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/183/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1891","name":"Cover + #1891","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1892","name":"Interior + #1892","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/183/events","items":[],"returned":0}},{"id":1994,"digitalId":0,"title":"Official + Handbook of the Marvel Universe (2004) #13 (TEAMS)","issueNumber":13,"variantDescription":"TEAMS","description":"Heavy-hitting + heroes unite! This Official Handbook contains in-depth bios on more than 30 + of the Marvel Universe''s most awesome assemblages - including the Defenders, + Power Pack and the New Thunderbolts! Plus: An all-new cover by superstar artist + Tom Grummett, digitally painted by Morry Hollowell.\r
48 PGS./All Ages + ...$3.99\r
","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605695-00111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Heavy-hitting + heroes unite! This Official Handbook contains in-depth bios on more than 30 + of the Marvel Universe''s most awesome assemblages - including the Defenders, + Power Pack and the New Thunderbolts! Plus: An all-new cover by superstar artist + Tom Grummett, digitally painted by Morry Hollowell.\r
48 PGS./All Ages + ...$3.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1994","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/1994/official_handbook_of_the_marvel_universe_2004_13_teams/teams?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/20/4bc63a47b8dcb","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/20/4bc63a47b8dcb","extension":"jpg"}],"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1994/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/887","name":"Ronald + Byrd","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/902","name":"Jeff + Christiansen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/903","name":"Anthony + Flamini","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/930","name":"Richard + Green","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/888","name":"Michael + Hoskin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/897","name":"Sean + Mcquaid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/394","name":"Eric + J. Moreels","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/899","name":"Mark + OEnglish","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/896","name":"Stuart + Vandal","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom + Grummett","role":"penciller (cover)"}],"returned":10},"characters":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1994/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010975","name":"Shadowcat + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010976","name":"Silver + Samurai (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009636","name":"Sunfire"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"}],"returned":14},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1994/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4614","name":"Cover + #4614","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4615","name":"Interior + #4615","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1994/events","items":[],"returned":0}},{"id":1689,"digitalId":0,"title":"Official + Handbook of the Marvel Universe (2004) #10 (MARVEL KNIGHTS)","issueNumber":10,"variantDescription":"MARVEL + KNIGHTS","description":"On the mean streets of the Marvel Universe, the kid + gloves come off. Guardian devils, vengeance-seeking vigilantes and enigmatic + assassins stalk the city''s dark underbelly _ and the urban action unfolds + with gritty intensity. The newest entry in Marvel''s best-selling Handbook + series, OHOTMUMK04 includes in-depth bios on a host of the House''s edgiest + icons - from Black Panther to Shang-Chi!","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605694-00111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"On + the mean streets of the Marvel Universe, the kid gloves come off. Guardian + devils, vengeance-seeking vigilantes and enigmatic assassins stalk the city''s + dark underbelly _ and the urban action unfolds with gritty intensity. The + newest entry in Marvel''s best-selling Handbook series, OHOTMUMK04 includes + in-depth bios on a host of the House''s edgiest icons - from Black Panther + to Shang-Chi!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1689","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/1689/official_handbook_of_the_marvel_universe_2004_10_marvel_knights/marvel_knights?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/30/4bc64df4105b9","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/30/4bc64df4105b9","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1689/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/887","name":"Ronald + Byrd","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/902","name":"Jeff + Christiansen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/903","name":"Anthony + Flamini","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/888","name":"Michael + Hoskin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/897","name":"Sean + Mcquaid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/394","name":"Eric + J. Moreels","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/900","name":"Barry + Reese","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/896","name":"Stuart + Vandal","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/490","name":"Pat + Lee","role":"penciller (cover)"}],"returned":9},"characters":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1689/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010975","name":"Shadowcat + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010976","name":"Silver + Samurai (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009636","name":"Sunfire"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"}],"returned":14},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1689/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4612","name":"Cover + #4612","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4613","name":"Interior + #4613","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1689/events","items":[],"returned":0}},{"id":323,"digitalId":0,"title":"Ant-Man + (2003) #2","issueNumber":2,"variantDescription":"","description":"Ant-Man + digs deeper to find out who is leaking secret information that threatens our + national security.\r\n32 pgs./PARENTAL ADVISORY...$2.99","modified":"-0001-11-30T00:00:00-0500","isbn":"","upc":"5960605396-01911","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Ant-Man + digs deeper to find out who is leaking secret information that threatens our + national security.\r\n32 pgs./PARENTAL ADVISORY...$2.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/323","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/323/ant-man_2003_2?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/551","name":"Ant-Man + (2003 - 2004)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":2.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/20/4bc69f33cafc0","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/20/4bc69f33cafc0","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/323/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/600","name":"Clayton + Crain","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/344","name":"Daniel + Way","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/323/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/323/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1808","name":"Cover + #1808","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1809","name":"Interior + #1809","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/323/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_ComicResource/gets_comics_with_params.yml b/spec/vcr/Harkness_ComicResource/gets_comics_with_params.yml new file mode 100644 index 0000000..4988c23 --- /dev/null +++ b/spec/vcr/Harkness_ComicResource/gets_comics_with_params.yml @@ -0,0 +1,46 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&titleStartsWith=Spider&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 0e48ba6cf1fdd16ffd9360f9fb619a47ee83805c + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 15:29:07 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"0e48ba6cf1fdd16ffd9360f9fb619a47ee83805c","data":{"offset":0,"limit":1,"total":1773,"count":1,"results":[{"id":59551,"digitalId":0,"title":"Spider-Man + (2016) #6 (Anka Mighty Men Variant)","issueNumber":6,"variantDescription":"Anka + Mighty Men Variant","description":null,"modified":"2016-07-21T17:22:23-0400","isbn":"","upc":"75960608314500621","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/59551","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/59551/spider-man_2016_6_anka_mighty_men_variant/anka_mighty_men_variant?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20508","name":"Spider-Man + (2016 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55700","name":"Spider-Man + (2016) #6"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2029-12-31T00:00:00-0500"},{"type":"focDate","date":"2016-07-13T00:00:00-0400"}],"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":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/30/56f46483efc4f","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/59551/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11575","name":"Kris + Anka","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/59551/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/59551/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/129608","name":"cover + from Spider-Man (2016) #6 (ANKA MOP VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/129609","name":"story + from Spider-Man (2016) #6 (ANKA MOP VARIANT)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/59551/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_a_creator_by_ID.yml b/spec/vcr/Harkness_CreatorResource/gets_a_creator_by_ID.yml new file mode 100644 index 0000000..acfe2b9 --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_a_creator_by_ID.yml @@ -0,0 +1,87 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators/8098?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 0c74165f27b4e5c27d2ed8a33f837adf6d042e39 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 23:03:21 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"0c74165f27b4e5c27d2ed8a33f837adf6d042e39","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":8098,"firstName":"Bengal","middleName":"","lastName":"","suffix":"","fullName":"Bengal","modified":"2016-09-12T10:46:58-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/creators/8098","comics":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","name":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","name":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61346","name":"All-New + Wolverine (2015) #15 (Bengal Connecting Variant C)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61347","name":"All-New + Wolverine (2015) #16 (Bengal Connecting Variant D)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61348","name":"All-New + Wolverine (2015) #17 (Bengal Connecting Variant E)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51411","name":"Avengers + (2012) #34.2 (Araujo Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20448","name":"Black + Widow (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","name":"Siege + (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23871","name":"Spider-Gwen + Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26022","name":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19676","name":"Spider-Man + & the X-Men (2014 - 2015)"}],"returned":9},"stories":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/71285","name":"Interior + #71285","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81864","name":"Sky + Doll Space Ship #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114397","name":"cover + from Avengers (2012) #34.2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114398","name":"story + from Avengers (2012) #34.2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114400","name":"story + from Avengers (2012) #34.2 (ARAUJO VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115445","name":"cover + from Guardians Team-Up (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115446","name":"story + from Guardians Team-Up (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116667","name":"cover + from Spider-Man & the X-Men (2014) #1 (BENGAL VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","name":"story + from Spider-Gwen (2015) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","name":"story + from Spider-Gwen (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","name":"cover + from All-New Wolverine (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","name":"cover + from All-New Wolverine (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","name":"story + from All-New Wolverine (2015) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","name":"cover + from All-New Wolverine (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","name":"cover + from All-New Wolverine (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","name":"cover + from All-New Wolverine (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123737","name":"cover + from All-New Wolverine (2015) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123739","name":"cover + from All-New Wolverine (2015) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123741","name":"cover + from All-New Wolverine (2015) #12","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/8098/bengal?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_comics_by_ID.yml b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_comics_by_ID.yml new file mode 100644 index 0000000..d42648d --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_comics_by_ID.yml @@ -0,0 +1,383 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators/8098/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - f8ca2905ae5e0b793af6fb03c701be717f0345f1 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:30:13 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"f8ca2905ae5e0b793af6fb03c701be717f0345f1","data":{"offset":0,"limit":20,"total":23,"count":20,"results":[{"id":71398,"digitalId":52607,"title":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (Trade Paperback)","issueNumber":0,"variantDescription":"","description":null,"modified":"2019-09-03T09:42:20-0400","isbn":"978-1-302-91477-6","upc":"","diamondCode":"JUN191055","ean":"9781302 + 914776 51799","issn":"","format":"Trade Paperback","pageCount":136,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/71398","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/71398/spider-gwen_ghost-spider_vol_2_-_impossible_year_trade_paperback?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/SPIDER-GWEN-GHOST-SPIDER-VOL-2-IMPOSSIBLE-YEAR-TPB-0/digital-comic/52607?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=52607&utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/26022","name":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (2019)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2019-09-04T00:00:00-0400"},{"type":"focDate","date":"2019-07-15T00:00:00-0400"},{"type":"unlimitedDate","date":"2019-10-10T12:17:00-0400"},{"type":"digitalPurchaseDate","date":"2019-10-10T12:17:00-0400"}],"prices":[{"type":"printPrice","price":17.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/f0/5d66a13030c9e","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/f0/5d66a13030c9e","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/71398/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13556","name":"Seanan + Mcguire","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/495","name":"Takeshi + Miyazawa","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff + Youngquist","role":"editor"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/71398/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/71398/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158772","name":"cover + from SPIDER-GWEN VOL. 2 TPB (2019) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158773","name":"story + from SPIDER-GWEN VOL. 2 TPB (2019) #2","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/71398/events","items":[],"returned":0}},{"id":65726,"digitalId":0,"title":"Spider-Gwen + Vol. 2 (Hardcover)","issueNumber":0,"variantDescription":"","description":"Gwen + Stacy has lost her spider-powers - making this a very bad time to find herself + in Frank Castle''s crosshairs! So when the Mary Janes head to a haunted house, + is Gwen along for the fun, or will she be one of the ghosts? Thanksgiving + should be a happy time with friends and family - unless crime lord Matt Murdock + and his ninjas crash the party! Is it time for Gwen to put a stop to the Kingpin + of Crime, or does Matt have a thing or two to teach her? Next, the Mary Janes + get loud, and Gwen spends some time with her ever-expanding social circle: + Captain America! She-Hulk?! Her BPFF (best pig friend forever) Spider-Ham! + And her new body-swapping bud, the All-New Wolverine! Collecting SPIDER-GWEN + (2015B) #7-15 and ANNUAL #1, and ALL-NEW WOLVERINE ANNUAL #1.","modified":"2017-12-18T18:24:37-0500","isbn":"978-1-302-90900-0","upc":"","diamondCode":"JUL171191","ean":"9781302 + 909000 53499","issn":"","format":"Hardcover","pageCount":272,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Gwen + Stacy has lost her spider-powers - making this a very bad time to find herself + in Frank Castle''s crosshairs! So when the Mary Janes head to a haunted house, + is Gwen along for the fun, or will she be one of the ghosts? Thanksgiving + should be a happy time with friends and family - unless crime lord Matt Murdock + and his ninjas crash the party! Is it time for Gwen to put a stop to the Kingpin + of Crime, or does Matt have a thing or two to teach her? Next, the Mary Janes + get loud, and Gwen spends some time with her ever-expanding social circle: + Captain America! She-Hulk?! Her BPFF (best pig friend forever) Spider-Ham! + And her new body-swapping bud, the All-New Wolverine! Collecting SPIDER-GWEN + (2015B) #7-15 and ANNUAL #1, and ALL-NEW WOLVERINE ANNUAL #1."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/65726","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/65726/spider-gwen_vol_2_hardcover?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/23871","name":"Spider-Gwen + Vol. 2 (2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2018-01-03T00:00:00-0500"},{"type":"focDate","date":"2017-09-04T00:00:00-0400"}],"prices":[{"type":"printPrice","price":34.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/30/5a38501b855e2","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/30/5a38501b855e2","extension":"jpg"}],"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/65726/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9031","name":"Marcio + Takara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12848","name":"Chris + Visions","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12399","name":"Robbi + Rodriguez","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff + Youngquist","role":"editor"}],"returned":7},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/65726/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011347","name":"Spider-Ham + (Larval Earth)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/65726/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/142572","name":"cover + from SPIDER-GWEN VOL. 2 HC (2018) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/142573","name":"story + from SPIDER-GWEN VOL. 2 HC (2018) #2","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/65726/events","items":[],"returned":0}},{"id":61348,"digitalId":0,"title":"All-New + Wolverine (2015) #17 (Bengal Connecting Variant E)","issueNumber":17,"variantDescription":"Bengal + Connecting Variant E","description":null,"modified":"2017-02-02T14:36:34-0500","isbn":"","upc":"75960608359601721","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/61348","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/61348/all-new_wolverine_2015_17_bengal_connecting_variant_e/bengal_connecting_variant_e?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60507","name":"All-New + Wolverine (2015) #17"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2017-02-08T00:00:00-0500"},{"type":"focDate","date":"2017-01-18T00: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":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61348/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61348/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61348/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133106","name":"cover + from All-New Wolverine (2015) #17 (TBD ARTIST CONNECTING VARIANT E)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133107","name":"story + from All-New Wolverine (2015) #17 (TBD ARTIST CONNECTING VARIANT E)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61348/events","items":[],"returned":0}},{"id":61347,"digitalId":0,"title":"All-New + Wolverine (2015) #16 (Bengal Connecting Variant D)","issueNumber":16,"variantDescription":"Bengal + Connecting Variant D","description":null,"modified":"2017-01-05T15:03:40-0500","isbn":"","upc":"75960608359601621","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/61347","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/61347/all-new_wolverine_2015_16_bengal_connecting_variant_d/bengal_connecting_variant_d?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56447","name":"All-New + Wolverine (2015) #16"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2017-01-04T00:00:00-0500"},{"type":"focDate","date":"2016-12-21T00: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":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61347/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61347/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61347/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133104","name":"cover + from All-New Wolverine (2015) #16 (TBD ARTIST CONNECTING VARIANT D)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133105","name":"story + from All-New Wolverine (2015) #16 (TBD ARTIST CONNECTING VARIANT D)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61347/events","items":[],"returned":0}},{"id":61346,"digitalId":0,"title":"All-New + Wolverine (2015) #15 (Bengal Connecting Variant C)","issueNumber":15,"variantDescription":"Bengal + Connecting Variant C","description":null,"modified":"2016-11-29T17:00:40-0500","isbn":"","upc":"75960608359601521","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/61346","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/61346/all-new_wolverine_2015_15_bengal_connecting_variant_c/bengal_connecting_variant_c?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56446","name":"All-New + Wolverine (2015) #15"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-12-07T00:00:00-0500"},{"type":"focDate","date":"2016-11-23T00: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":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61346/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61346/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61346/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133102","name":"cover + from All-New Wolverine (2015) #15 (TBD ARTIST CONNECTING VARIANT C)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133103","name":"story + from All-New Wolverine (2015) #15 (TBD ARTIST CONNECTING VARIANT C)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61346/events","items":[],"returned":0}},{"id":61345,"digitalId":0,"title":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)","issueNumber":14,"variantDescription":"Bengal + Connecting Variant B","description":null,"modified":"2016-11-08T11:09:48-0500","isbn":"","upc":"75960608359601421","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/61345/all-new_wolverine_2015_14_bengal_connecting_variant_b/bengal_connecting_variant_b?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56445","name":"All-New + Wolverine (2015) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61939","name":"All-New + Wolverine (2015) #14 (Yu Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-11-16T00:00:00-0500"},{"type":"focDate","date":"2016-10-19T00:00:00-0400"}],"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":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61345/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61345/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61345/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133100","name":"cover + from All-New Wolverine (2015) #14 (TBD ARTIST CONNECTING VARIANT B)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133101","name":"story + from All-New Wolverine (2015) #14 (TBD ARTIST CONNECTING VARIANT B)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61345/events","items":[],"returned":0}},{"id":61342,"digitalId":0,"title":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)","issueNumber":13,"variantDescription":"Bengal + Connecting Variant a","description":null,"modified":"2016-09-23T16:54:16-0400","isbn":"","upc":"75960608359601321","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/61342/all-new_wolverine_2015_13_bengal_connecting_variant_a/bengal_connecting_variant_a?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56444","name":"All-New + Wolverine (2015) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61343","name":"All-New + Wolverine (2015) #13 (Lim Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61861","name":"All-New + Wolverine (2015) #13 (Art Adams Champions Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-10-05T00:00:00-0400"},{"type":"focDate","date":"2016-09-21T00:00:00-0400"}],"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":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/90/57d6be4579657","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61342/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61342/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61342/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133094","name":"cover + from All-New Wolverine (2015) #13 (TBD ARTIST CONNECTING VARIANT A)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133095","name":"story + from All-New Wolverine (2015) #13 (TBD ARTIST CONNECTING VARIANT A)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/61342/events","items":[],"returned":0}},{"id":56443,"digitalId":42659,"title":"All-New + Wolverine (2015) #12","issueNumber":12,"variantDescription":"","description":"THE + ASTONISHING CONCLUSION TO OUR CIVIL WAR II TIE IN! GABBY’s life hangs in the + balance, with her death having been predicted to be cut short by none other + than OLD MAN LOGAN. As the shocking prediction looks to be coming true, LAURA’s + world is torn apart. Old Man Logan might be too old to stand against the fury + of the ALL-NEW WOLVERINE.","modified":"2018-04-09T14:56:07-0400","isbn":"","upc":"75960608359601211","diamondCode":"JUL160944","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"THE + ASTONISHING CONCLUSION TO OUR CIVIL WAR II TIE IN! GABBY’s life hangs in the + balance, with her death having been predicted to be cut short by none other + than OLD MAN LOGAN. As the shocking prediction looks to be coming true, LAURA’s + world is torn apart. Old Man Logan might be too old to stand against the fury + of the ALL-NEW WOLVERINE."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56443/all-new_wolverine_2015_12?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-12/digital-comic/42659?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=42659&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/42659?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-09-21T00:00:00-0400"},{"type":"focDate","date":"2016-09-07T00:00:00-0400"},{"type":"unlimitedDate","date":"2017-03-27T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2016-09-21T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/57d2c1c543a1a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/57d2c1c543a1a","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56443/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8606","name":"Ig + Guara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56443/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56443/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123741","name":"cover + from All-New Wolverine (2015) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123742","name":"story + from All-New Wolverine (2015) #12","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56443/events","items":[],"returned":0}},{"id":56442,"digitalId":42294,"title":"All-New + Wolverine (2015) #11","issueNumber":11,"variantDescription":"","description":"CIVIL + WAR II TIE-IN! DESTINY COMES KNOCKING FOR WOLVERINE! LAURA KINNEY has fought + all her life to avoid a destiny she did not want. She has fought against instincts + that would make her nothing more than a weapon to be used by others, instead + becoming a hero — becoming WOLVERINE. But now, destiny intrudes again, this + time threatening those dearest to her. And with a SUPER HERO CIVIL WAR tearing + her world apart, is there any hope that Wolverine will emerge victorious? + Or will she finally succumb to destiny?","modified":"2016-08-08T15:08:36-0400","isbn":"","upc":"75960608359601111","diamondCode":"JUN160814","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"CIVIL + WAR II TIE-IN! DESTINY COMES KNOCKING FOR WOLVERINE! LAURA KINNEY has fought + all her life to avoid a destiny she did not want. She has fought against instincts + that would make her nothing more than a weapon to be used by others, instead + becoming a hero — becoming WOLVERINE. But now, destiny intrudes again, this + time threatening those dearest to her. And with a SUPER HERO CIVIL WAR tearing + her world apart, is there any hope that Wolverine will emerge victorious? + Or will she finally succumb to destiny?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56442/all-new_wolverine_2015_11?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-11/digital-comic/42294?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=42294&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/42294?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60195","name":"All-New + Wolverine (2015) #11 (Parker Marvel Tsum Tsum Takeover Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-08-17T00:00:00-0400"},{"type":"focDate","date":"2016-08-03T00:00:00-0400"},{"type":"unlimitedDate","date":"2017-02-20T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2016-08-17T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/f0/57a8b4f6af78a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/f0/57a8b4f6af78a","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56442/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8606","name":"Ig + Guara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56442/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56442/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123739","name":"cover + from All-New Wolverine (2015) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123740","name":"story + from All-New Wolverine (2015) #11","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56442/events","items":[],"returned":0}},{"id":56441,"digitalId":42090,"title":"All-New + Wolverine (2015) #10","issueNumber":10,"variantDescription":"","description":"CIVIL + WAR II TIE-IN! Which side will WOLVERINE choose when a terrible prophecy puts + someone she loves into the crosshairs of her allies? How far is LAURA willing + to go to protect her loved ones? Teaming up with OLD MAN LOGAN, Laura is prepared + to fight the very future itself to change her destiny.","modified":"2016-07-12T16:49:57-0400","isbn":"","upc":"75960608359601011","diamondCode":"MAY160771","ean":"","issn":"","format":"Comic","pageCount":40,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"CIVIL + WAR II TIE-IN! Which side will WOLVERINE choose when a terrible prophecy puts + someone she loves into the crosshairs of her allies? How far is LAURA willing + to go to protect her loved ones? Teaming up with OLD MAN LOGAN, Laura is prepared + to fight the very future itself to change her destiny."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56441/all-new_wolverine_2015_10?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-10/digital-comic/42090?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=42090&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/42090?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-07-20T00:00:00-0400"},{"type":"focDate","date":"2016-07-06T00:00:00-0400"},{"type":"unlimitedDate","date":"2017-01-23T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2016-07-20T00:00:00-0400"}],"prices":[{"type":"printPrice","price":4.99},{"type":"digitalPurchasePrice","price":4.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/50/5785574ac2e79","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/50/5785574ac2e79","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/20/576d931215006","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/70/576d92efcf098","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/f0/576d92ccb8f5b","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/03/576d92a398231","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/40/576d9237ddfee","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56441/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8606","name":"Ig + Guara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56441/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56441/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123737","name":"cover + from All-New Wolverine (2015) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123738","name":"story + from All-New Wolverine (2015) #10","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56441/events","items":[],"returned":0}},{"id":56440,"digitalId":41733,"title":"All-New + Wolverine (2015) #9","issueNumber":9,"variantDescription":"","description":"On + the road to CIVIL WAR II! LAURA and LOGAN. We’ve seen it before. But this + isn’t the man Laura once knew. OLD MAN LOGAN has stepped out of a dystopian + future and into our world. His past full of horrors, he’s about to bring a + lot of baggage, and carnage, Laura’s way. With a CIVIL WAR set to divide the + heroes’ world, will Old Man Logan and WOLVERINE stand together against the + coming nightmare? Or will they shred each other apart?","modified":"2018-04-09T14:59:50-0400","isbn":"","upc":"75960608359600911","diamondCode":"APR160905","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"On + the road to CIVIL WAR II! LAURA and LOGAN. We’ve seen it before. But this + isn’t the man Laura once knew. OLD MAN LOGAN has stepped out of a dystopian + future and into our world. His past full of horrors, he’s about to bring a + lot of baggage, and carnage, Laura’s way. With a CIVIL WAR set to divide the + heroes’ world, will Old Man Logan and WOLVERINE stand together against the + coming nightmare? Or will they shred each other apart?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56440/all-new_wolverine_2015_9?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-9/digital-comic/41733?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41733&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/41733?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59863","name":"All-New + Wolverine (2015) #9 (Chin Cw Reenactment Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-06-01T00:00:00-0400"},{"type":"focDate","date":"2016-05-18T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-12-05T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2016-06-01T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/e0/573a22912dd32","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/e0/573a22912dd32","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56440/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9031","name":"Marcio + Takara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56440/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56440/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","name":"cover + from All-New Wolverine (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123736","name":"story + from All-New Wolverine (2015) #9","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56440/events","items":[],"returned":0}},{"id":56439,"digitalId":41568,"title":"All-New + Wolverine (2015) #8","issueNumber":8,"variantDescription":"","description":"WAY + OF THE SHADOW! What is the thing LAURA KINNEY fears most? Is she truly the + BEST AT WHAT SHE DOES? There is only one WOLVERINE. Or is there?!!","modified":"2016-05-03T12:43:49-0400","isbn":"","upc":"75960608359600811","diamondCode":"MAR160871","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"WAY + OF THE SHADOW! What is the thing LAURA KINNEY fears most? Is she truly the + BEST AT WHAT SHE DOES? There is only one WOLVERINE. Or is there?!!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56439/all-new_wolverine_2015_8?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-8/digital-comic/41568?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41568&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/41568?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-05-18T00:00:00-0400"},{"type":"focDate","date":"2016-05-04T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-11-21T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2016-05-18T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/5727c5a8bf0c5","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/5727c5a8bf0c5","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56439/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9031","name":"Marcio + Takara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56439/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56439/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","name":"cover + from All-New Wolverine (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123734","name":"story + from All-New Wolverine (2015) #8","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56439/events","items":[],"returned":0}},{"id":55684,"digitalId":41530,"title":"Spider-Gwen + (2015) #8","issueNumber":8,"variantDescription":"","description":"SPIDER-WOMEN + PART 5! The Spider-Women return to the Marvel Universe! Silk''s homecoming + is cut short, though, when they learn that CINDY MOON of EARTH-65 has paid + the MU a visit, too, and she''s caused a few problems for ALL of the Spider-Women. + Gwen''s universe has now made itself known-- and it can''t go well for her.","modified":"2016-04-29T14:08:14-0400","isbn":"","upc":"75960608313800811","diamondCode":"MAR160785","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"SPIDER-WOMEN + PART 5! The Spider-Women return to the Marvel Universe! Silk''s homecoming + is cut short, though, when they learn that CINDY MOON of EARTH-65 has paid + the MU a visit, too, and she''s caused a few problems for ALL of the Spider-Women. + Gwen''s universe has now made itself known-- and it can''t go well for her."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/55684/spider-gwen_2015_8?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Spider-Gwen-8/digital-comic/41530?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41530&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/41530?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-05-04T00:00:00-0400"},{"type":"focDate","date":"2016-04-20T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-11-07T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2016-05-04T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/a0/571e81438fb34","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/a0/571e81438fb34","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55684/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12698","name":"Yasmine + Putri","role":"penciller (cover)"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55684/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55684/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122411","name":"cover + from Spider-Gwen (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","name":"story + from Spider-Gwen (2015) #8","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55684/events","items":[],"returned":0}},{"id":56438,"digitalId":41940,"title":"All-New + Wolverine (2015) #7","issueNumber":7,"variantDescription":"","description":"The + battle has been fought, and won—but at what cost? As Laura and Gabby attempt + to move on with their lives, Wolverine’s past seems destined to catch up with + her, and wreak havoc. Logan’s legacy has cast a long shadow, how can Laura + hope to step out of it?","modified":"2016-04-22T14:34:50-0400","isbn":"","upc":"75960608359600711","diamondCode":"FEB160910","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + battle has been fought, and won—but at what cost? As Laura and Gabby attempt + to move on with their lives, Wolverine’s past seems destined to catch up with + her, and wreak havoc. Logan’s legacy has cast a long shadow, how can Laura + hope to step out of it?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56438/all-new_wolverine_2015_7?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-7/digital-comic/41940?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41940&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/41940?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-04-27T00:00:00-0400"},{"type":"focDate","date":"2016-04-13T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-10-24T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2016-04-27T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/10/571131c227ee6","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/10/571131c227ee6","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56438/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9031","name":"Marcio + Takara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56438/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010860","name":"Squirrel + Girl"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56438/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","name":"cover + from All-New Wolverine (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123732","name":"story + from All-New Wolverine (2015) #7","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56438/events","items":[],"returned":0}},{"id":55683,"digitalId":41688,"title":"Spider-Gwen + (2015) #7","issueNumber":7,"variantDescription":"","description":"SPIDER-WOMEN, + PART 2! Trapped in Earth-65, Spider-Gwen, Jessica Drew and Spider-Woman search + for a way to get Jessica home. Along the way, Jessica gets a tour of Gwen’s + life and meets THE MARY JANES!","modified":"2016-04-06T14:59:42-0400","isbn":"","upc":"75960608313800711","diamondCode":"FEB160778","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"SPIDER-WOMEN, + PART 2! Trapped in Earth-65, Spider-Gwen, Jessica Drew and Spider-Woman search + for a way to get Jessica home. Along the way, Jessica gets a tour of Gwen’s + life and meets THE MARY JANES!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/55683/spider-gwen_2015_7?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Spider-Gwen-7/digital-comic/41688?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41688&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/41688?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-04-13T00:00:00-0400"},{"type":"focDate","date":"2016-03-30T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-10-10T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2016-04-13T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/56faecb27f725","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/56faecb27f725","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/50/56da34654bad7","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55683/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12698","name":"Yasmine + Putri","role":"penciller (cover)"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55683/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55683/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122409","name":"cover + from Spider-Gwen (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","name":"story + from Spider-Gwen (2015) #7","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/55683/events","items":[],"returned":0}},{"id":56436,"digitalId":41113,"title":"All-New + Wolverine (2015) #5","issueNumber":5,"variantDescription":"","description":"Wolverine + will have to go where she’s never gone before in order to save the lives of + her mysterious three “sisters!” Along her journey, Laura will have to team + up with an ally she never expected, and one who has seemingly sworn off the + life of a super hero...Say hello to the original Wasp, the one and only JANET + VAN DYNE!","modified":"2018-04-09T15:04:37-0400","isbn":"","upc":"75960608359600511","diamondCode":"DEC150851","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Wolverine + will have to go where she’s never gone before in order to save the lives of + her mysterious three “sisters!” Along her journey, Laura will have to team + up with an ally she never expected, and one who has seemingly sworn off the + life of a super hero...Say hello to the original Wasp, the one and only JANET + VAN DYNE!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56436/all-new_wolverine_2015_5?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-5/digital-comic/41113?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=41113&utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58194","name":"All-New + Wolverine (2015) #5 (Michael Cho Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2016-02-10T00:00:00-0500"},{"type":"focDate","date":"2016-01-27T00:00:00-0500"},{"type":"unlimitedDate","date":"2016-08-15T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2016-02-05T11:29:00-0500"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/56ab87b37f070","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/56ab87b37f070","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/60/568fc97a66156","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56436/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56436/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009707","name":"Wasp"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56436/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123727","name":"cover + from All-New Wolverine (2015) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","name":"story + from All-New Wolverine (2015) #5","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56436/events","items":[],"returned":0}},{"id":56430,"digitalId":40534,"title":"All-New + Wolverine (2015) #2","issueNumber":2,"variantDescription":"","description":"LAURA + KINNEY EMBRACES HER DESTINY. HERE! COMES! WOLVERINE!\nX-23 was created to + be a weapon and for a time, that’s all she was. But with the help of her mentor, + LOGAN—the original WOLVERINE—she escaped that dark past. Tragically, Logan + has fallen, but Laura will continue in his footsteps as a hero. Recent events + have her doing everything in her power to keep those around her alive, as + violent forces are hell-bent on mutual destruction. If anyone can stop them, + it’s Laura. She is the best there is at what she does. She is THE ALL-NEW + WOLVERINE.","modified":"2015-11-17T12:15:37-0500","isbn":"","upc":"75960608359600211","diamondCode":"SEP150724","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"LAURA + KINNEY EMBRACES HER DESTINY. HERE! COMES! WOLVERINE!\nX-23 was created to + be a weapon and for a time, that’s all she was. But with the help of her mentor, + LOGAN—the original WOLVERINE—she escaped that dark past. Tragically, Logan + has fallen, but Laura will continue in his footsteps as a hero. Recent events + have her doing everything in her power to keep those around her alive, as + violent forces are hell-bent on mutual destruction. If anyone can stop them, + it’s Laura. She is the best there is at what she does. She is THE ALL-NEW + WOLVERINE."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56430/all-new_wolverine_2015_2?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-2/digital-comic/40534?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=40534&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/40534?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58869","name":"All-New + Wolverine (2015) #2 (Bengal 2nd Printing Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2015-11-25T00:00:00-0500"},{"type":"focDate","date":"2015-11-10T00:00:00-0500"},{"type":"unlimitedDate","date":"2016-05-23T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2015-11-25T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/564a4d56b0de3","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/564a4d56b0de3","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56430/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12780","name":"David + Navarrot","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56430/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56430/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","name":"cover + from All-New Wolverine (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123716","name":"story + from All-New Wolverine (2015) #2","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56430/events","items":[],"returned":0}},{"id":56424,"digitalId":40459,"title":"All-New + Wolverine (2015) #1","issueNumber":1,"variantDescription":"","description":"LAURA + KINNEY EMBRACES HER DESTINY. HERE! COMES! WOLVERINE!\nX-23 was created to + be a weapon and for a time, that''s all she was. But with the help of her + mentor, LOGAN-the original WOLVERINE-she escaped that dark past. Tragically, + Logan has fallen, but Laura will continue in his footsteps as a hero. Recent + events have her doing everything in her power to keep those around her alive, + as violent forces are hell-bent on mutual destruction. If anyone can stop + them, it''s Laura. She is the best there is at what she does. She is THE ALL-NEW + WOLVERINE.","modified":"2018-04-09T15:13:19-0400","isbn":"","upc":"75960608359600111","diamondCode":"SEP150716","ean":"","issn":"","format":"Comic","pageCount":40,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"LAURA + KINNEY EMBRACES HER DESTINY. HERE! COMES! WOLVERINE!\nX-23 was created to + be a weapon and for a time, that''s all she was. But with the help of her + mentor, LOGAN-the original WOLVERINE-she escaped that dark past. Tragically, + Logan has fallen, but Laura will continue in his footsteps as a hero. Recent + events have her doing everything in her power to keep those around her alive, + as violent forces are hell-bent on mutual destruction. If anyone can stop + them, it''s Laura. She is the best there is at what she does. She is THE ALL-NEW + WOLVERINE."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/56424/all-new_wolverine_2015_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/All-New-Wolverine-1/digital-comic/40459?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=40459&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/40459?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56425","name":"All-New + Wolverine (2015) #1 (Adams Variant)"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2015-11-11T00:00:00-0500"},{"type":"focDate","date":"2015-10-27T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-05-09T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2015-11-11T00:00:00-0500"}],"prices":[{"type":"printPrice","price":4.99},{"type":"digitalPurchasePrice","price":4.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/d0/563ba988a0890","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/d0/563ba988a0890","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/60/561e8672958f1","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/a0/561e8604d66a5","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/c0/561e85a9b35e4","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/561e8530a6d14","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/50/561e8460edd22","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/70/561e83c047cd5","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/b0/561bc166ea1ad","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/55de1a9757e0c","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/00/55de1a62b9016","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/40/55de1a2b68093","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/d0/55de19faa1d11","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/40/55de19a5713a4","extension":"jpg"}],"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56424/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12780","name":"David + Navarrot","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56424/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56424/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","name":"cover + from All-New Wolverine (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123704","name":"story + from All-New Wolverine (2015) #1","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/56424/events","items":[],"returned":0}},{"id":51934,"digitalId":39445,"title":"Guardians + Team-Up (2015) #8","issueNumber":8,"variantDescription":"","description":"- + A crippled spaceship with a million souls on board. A ruthless force, blasting + it all the way to the ground.\nAnd in the middle: Groot and the Silver Surfer, + teamed up for a daring rescue! But what mysterious quest can bring them both + together in the midst of this conflict? And what is the prize that they may + both be willing to sacrifice themselves for?","modified":"2015-07-21T14:13:24-0400","isbn":"","upc":"75960608191200811","diamondCode":"MAY150792","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"- + A crippled spaceship with a million souls on board. A ruthless force, blasting + it all the way to the ground.\nAnd in the middle: Groot and the Silver Surfer, + teamed up for a daring rescue! But what mysterious quest can bring them both + together in the midst of this conflict? And what is the prize that they may + both be willing to sacrifice themselves for?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/51934/guardians_team-up_2015_8?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Guardians-Team-Up-8/digital-comic/39445?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=39445&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/39445?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2015-07-29T00:00:00-0400"},{"type":"focDate","date":"2015-07-15T00:00:00-0400"},{"type":"unlimitedDate","date":"2016-01-25T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2015-07-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/55ae8a864c915","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/55ae8a864c915","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/10/5575db805cd88","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/51934/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12442","name":"Ray + Fawkes","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/51934/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/51934/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115445","name":"cover + from Guardians Team-Up (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115446","name":"story + from Guardians Team-Up (2015) #8","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/51934/events","items":[],"returned":0}},{"id":54859,"digitalId":0,"title":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)","issueNumber":1,"variantDescription":"BENGAL + ANT-SIZED VARIANT","description":"THEY CAN''T EVER WIN. THEY CAN''T AFFORD + TO LOSE.\n- THE SHIELD is the only thing that protects the more civilized + areas of Battleworld from the ZOMBIE HORDES, DEATH MACHINES, AND ANNIHILATION + WAVES.\n- Anyone who annoys Doom gets sent to The Shield. Anyone who gets + sent to the Shield deals with ABIGAIL BRAND.\n- Miss America, Lady Katherine, + Kang the Conqueror, Leah Shieldmen, the Endless Summers Company, Leonardo + Da Vinci and a cast of thousands will fight to the death to keep Battleworld + safe. But don''t worry, Kieron Gillen is writing this book, so I''m sure everything + will end happily for everyone.\n- \"Imagine NextWave as a tragedy,\" says + Kieron, if anyone asks him about it.","modified":"2015-07-09T16:46:05-0400","isbn":"","upc":"75960608225400131","diamondCode":"MAY150677","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"THEY + CAN''T EVER WIN. THEY CAN''T AFFORD TO LOSE.\n- THE SHIELD is the only thing + that protects the more civilized areas of Battleworld from the ZOMBIE HORDES, + DEATH MACHINES, AND ANNIHILATION WAVES.\n- Anyone who annoys Doom gets sent + to The Shield. Anyone who gets sent to the Shield deals with ABIGAIL BRAND.\n- + Miss America, Lady Katherine, Kang the Conqueror, Leah Shieldmen, the Endless + Summers Company, Leonardo Da Vinci and a cast of thousands will fight to the + death to keep Battleworld safe. But don''t worry, Kieron Gillen is writing + this book, so I''m sure everything will end happily for everyone.\n- \"Imagine + NextWave as a tragedy,\" says Kieron, if anyone asks him about it."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/54859/siege_2015_1_bengal_ant-sized_variant/bengal_ant-sized_variant?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","name":"Siege + (2015)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54812","name":"Siege + (2015) #1 (BUDICH MAOS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52281","name":"Siege + (2015) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2015-07-15T00:00:00-0400"},{"type":"focDate","date":"2015-06-22T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/60/559edc4632896","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/60/559edc4632896","extension":"jpg"}],"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/54859/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12471","name":"Filipe + Andrade","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8901","name":"Kieron + Gillen","role":"writer"}],"returned":3},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/54859/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/54859/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120936","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/54859/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_events_by_ID.yml b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_events_by_ID.yml new file mode 100644 index 0000000..afd5fc7 --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_events_by_ID.yml @@ -0,0 +1,403 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators/4994/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - e2ea2b88700a765702b3630a3eff8ae91b77fd8d + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:31:14 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"e2ea2b88700a765702b3630a3eff8ae91b77fd8d","data":{"offset":0,"limit":20,"total":4,"count":4,"results":[{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Ultron?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-03-25T15:39:52-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":30,"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/357","name":"Jim + 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/208","name":"Paco + Medina","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":"Gerry + Duggan","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/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13021","name":"David + Curiel","role":"colorist"},{"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"}],"returned":20},"characters":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009155","name":"Ant-Man + (Hank Pym)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"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/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009384","name":"Kang"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009215","name":"Luke + Cage"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009452","name":"Moon + Knight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009583","name":"She-Hulk + (Jennifer Walters)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009685","name":"Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009697","name":"Vision"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":15},"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 (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":7,"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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17370","name":"Fearless + Defenders (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18248","name":"Hunger + (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17554","name":"Superior + Spider-Man (2013 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17900","name":"Ultron + (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13910","name":"Wolverine + & the X-Men (2011 - 2014)"}],"returned":7},"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":320,"title":"Axis","description":"The Red Skull has taken over + Genosha and stands poised to plunge the planet into World War Hate! The Avengers + and X-Men must team-up with each other and some of their greatest foes, but + along the way, Inversion changes everything! Anything can happen in this nine-issue + event written by Rick Remender with the art of Jim Cheung, Terry Dodson, Adam + Kubert and Leinil Yu!","resourceURI":"http://gateway.marvel.com/v1/public/events/320","urls":[{"type":"detail","url":"http://marvel.com/comics/events/320/axis?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Axis?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-08-22T15:20:00-0400","start":"2014-10-08 + 00:01:00","end":"2014-12-17 11:59:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/53f77ba25db97","extension":"jpg"},"creators":{"available":63,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel + Acuna","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9799","name":"David + Baldeon","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/412","name":"Carlo + Barberi","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11748","name":"Marco + Checchetto","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12448","name":"Yildiray + Cinar","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12823","name":"Jorge + Coelho","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman + Andrasofszky","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11575","name":"Kris + Anka","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9018","name":"Mahmud + Asrar","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/357","name":"Jim + Cheung","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1052","name":"Mike + Choi","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7639","name":"John + Barber","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12459","name":"Frank + Barbiere","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10023","name":"Cullen + Bunn","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/808","name":"Howard + Chaykin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/121","name":"Peter + David","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"}],"returned":20},"characters":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/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/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009227","name":"Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010671","name":"Enchantress + (Amora)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009297","name":"Falcon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009306","name":"Firestar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010766","name":"Jack + O'' Lantern"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009407","name":"Loki"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009465","name":"Mystique"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017078","name":"Nova + (Sam Alexander)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009535","name":"Red + Skull"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009562","name":"Scarlet + Witch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":20},"stories":{"available":98,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107893","name":"cover + from Inhumans (2013) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107894","name":"story + from Inhumans (2013) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107895","name":"cover + from Inhumans (2013) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108193","name":"cover + from All-New X-Factor (2013) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108194","name":"story + from All-New X-Factor (2013) #15","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108195","name":"cover + from All-New X-Factor (2013) #16","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108196","name":"story + from All-New X-Factor (2013) #16","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108197","name":"cover + from All-New X-Factor (2013) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108198","name":"story + from All-New X-Factor (2013) #17","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108199","name":"cover + from All-New X-Factor (2013) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108200","name":"story + from All-New X-Factor (2013) #18","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109145","name":"cover + from Loki: Agent of Asgard (2013) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109146","name":"story + from Loki: Agent of Asgard (2013) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109277","name":"CAPTAIN + AMERICA (2012) #24","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109278","name":"story + from Captain America (2012) #24","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109905","name":"cover + from Wolverine & the X-Men (2014) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109906","name":"story + from Wolverine & the X-Men (2014) #12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109933","name":"cover + from X-Men Legacy (2014) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109934","name":"story + from X-Men Legacy (2014) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109935","name":"cover + from X-Men Legacy (2014) #10","type":"cover"}],"returned":20},"comics":{"available":49,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47976","name":"All-New + X-Factor (2014) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47977","name":"All-New + X-Factor (2014) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47978","name":"All-New + X-Factor (2014) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47979","name":"All-New + X-Factor (2014) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51147","name":"Amazing + X-Men (2013) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50601","name":"Avengers + & X-Men: Axis (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50602","name":"Avengers + & X-Men: Axis (2014) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50603","name":"Avengers + & X-Men: Axis (2014) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50604","name":"Avengers + & X-Men: Axis (2014) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50605","name":"Avengers + & X-Men: Axis (2014) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50606","name":"Avengers + & X-Men: Axis (2014) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50607","name":"Avengers + & X-Men: Axis (2014) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51168","name":"Avengers + & X-Men: Axis (2014) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51063","name":"Avengers + World (2014) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51444","name":"Avengers + World (2014) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50980","name":"Axis: + Carnage (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51064","name":"Axis: + Carnage (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50976","name":"Axis: + Hobgoblin (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51055","name":"Axis: + Hobgoblin (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51155","name":"Axis: + Hobgoblin (2014) #3"}],"returned":20},"series":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18136","name":"All-New + X-Factor (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18904","name":"Avengers + & X-Men: Axis (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18398","name":"Avengers + World (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19085","name":"Axis: + Carnage (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19084","name":"Axis: + Hobgoblin (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19086","name":"Axis: + Revolutions (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16516","name":"Captain + America (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19160","name":"Captain + America & the Mighty Avengers (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16542","name":"Deadpool + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18065","name":"Inhuman + (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18340","name":"Loki: + Agent of Asgard (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18407","name":"Magneto + (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16411","name":"Nova + (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19164","name":"Superior + Iron Man (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18406","name":"Wolverine + & the X-Men (2014)"}],"returned":17},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/321","name":"Spider-Verse"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"}},{"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=abcd"}],"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":313,"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/9046","name":"Mario + Alberti","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman + Andrasofszky","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/1004","name":"Daniel + Acuna","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciller (cover)"},{"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/4014","name":"Axel + Alonso","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8000","name":"Alejandro + Arbona","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellington + 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/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10271","name":"Sergio + Arino","role":"artist"}],"returned":20},"characters":{"available":150,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/characters","items":[{"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/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009164","name":"Avalanche"},{"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/1009175","name":"Beast"},{"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/1009733","name":"Charles + Xavier"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1012065","name":"Chthon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010809","name":"Clint + Barton"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"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"}],"returned":20},"stories":{"available":405,"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":"Invincible + Iron Man (2008) #8","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":"SECRET + INVASION: DARK REIGN (2008) #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":"WAR + MACHINE (2008) #1","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":199,"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/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"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24167","name":"Avengers: + The Initiative (2007) #24"}],"returned":20},"series":{"available":50,"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 (2009 - 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/7679","name":"Dark + Reign Files (2009)"},{"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 - Spymaster (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/7206","name":"Dark + Reign: Skrull Kill Krew (2009)"},{"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)"}],"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":273,"title":"Siege","description":"When Norman Osborn gathers + his evil Cabal to attack Asgard, Captain America leads the Avengers to end + the Dark Reign! In a four-issue event written by Brian Michael Bendis with + art by Olivier Coipel, Earth''s Mightiest reunite to oppose their dark counterparts + and kick start a Heroic Age!","resourceURI":"http://gateway.marvel.com/v1/public/events/273","urls":[{"type":"detail","url":"http://marvel.com/comics/events/273/siege?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Siege?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2013-07-01T22:16:04-0400","start":"2009-12-06 + 00:00:00","end":"2010-05-19 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/f0/5109a26a41b77","extension":"jpg"},"creators":{"available":115,"collectionURI":"http://gateway.marvel.com/v1/public/events/273/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":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11401","name":"Various","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9018","name":"Mahmud + Asrar","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7546","name":"Guisseppe + Cammuncoli","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6170","name":"Olivier + Coipel","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel + Acuna","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9378","name":"Rommel + Alama","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/128","name":"Doug + Braithwaite","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1067","name":"Madison + Carter","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman + Andrasofszky","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13215","name":"Rain + Beredo","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/562","name":"Tom + Chu","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian + Michael Bendis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9368","name":"Roger + Bonet","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10091","name":"Rebecca + Buchman","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1141","name":"Giuseppe + Camuncoli","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"}],"returned":20},"characters":{"available":71,"collectionURI":"http://gateway.marvel.com/v1/public/events/273/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009148","name":"Absorbing + Man"},{"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/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011456","name":"Balder"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010829","name":"Bengal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"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/1009453","name":"Dani + Moonstar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009262","name":"Daredevil"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011367","name":"Dark + Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009274","name":"Diamondback + (Rachel Leighton)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011072","name":"Edwin + Jarvis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic + Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009316","name":"Gauntlet + (Joseph Green)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011435","name":"Green + Goblin (Norman Osborn)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011490","name":"Hank + Pym"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"}],"returned":20},"stories":{"available":130,"collectionURI":"http://gateway.marvel.com/v1/public/events/273/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26180","name":"Cover + #26180","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51390","name":"Cover + #51390","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/51391","name":"Interior + #51391","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53346","name":"1 + of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53347","name":"1 + of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54847","name":"Cover + #54847","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54848","name":"Interior + #54848","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55081","name":"Cover + #55081","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55082","name":"Interior + #55082","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55083","name":"Cover + #55083","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/55084","name":"Interior + #55084","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57042","name":"Cover + #57042","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57043","name":"Interior + #57043","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57239","name":"Cover + #57239","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57240","name":"Interior + #57240","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57241","name":"Cover + #57241","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57242","name":"Interior + #57242","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57336","name":"Interior + #57336","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/58309","name":"Cover + #58309","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/58310","name":"Interior + #58310","type":"interiorStory"}],"returned":20},"comics":{"available":64,"collectionURI":"http://gateway.marvel.com/v1/public/events/273/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27548","name":"Avengers: + The Initiative (2007) #31"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27549","name":"Avengers: + The Initiative (2007) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29816","name":"Avengers: + The Initiative (2007) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29817","name":"Avengers: + The Initiative (2007) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29931","name":"Avengers: + The Initiative (2007) #35"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23175","name":"Dark + Avengers (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29594","name":"Dark + Avengers (2009) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29595","name":"Dark + Avengers (2009) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29596","name":"Dark + Avengers (2009) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29933","name":"Dark + Avengers (2009) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24809","name":"Dark + Avengers Annual (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24059","name":"Dark + Reign: The Cabal (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26500","name":"Dark + Reign: The Goblin Legacy (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27420","name":"Dark + Reign: The List - Avengers (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24925","name":"Dark + Wolverine (2009) #82"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24926","name":"Dark + Wolverine (2009) #83"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30384","name":"Dark + Wolverine (2009) #84"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25976","name":"The + Mighty Avengers (2007) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25977","name":"The + Mighty Avengers (2007) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29288","name":"The + Mighty Avengers (2007) #34"}],"returned":20},"series":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/events/273/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/6599","name":"Dark + Avengers (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7676","name":"Dark + Avengers Annual (2009)"},{"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/9105","name":"Dark + Reign: The List - Avengers (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7707","name":"Dark + Wolverine (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/753","name":"New + Avengers (2004 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8140","name":"New + Avengers Annual (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9720","name":"New + Avengers Finale (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7455","name":"New + Mutants (2009 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9174","name":"Origins + of Siege (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12348","name":"Sentry: + Fallen Sun (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9178","name":"Siege + (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9576","name":"Siege + (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9117","name":"Siege + Prologue (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9388","name":"Siege: + Avengers - The Initiative (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9371","name":"Siege: + Battlefield (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9749","name":"Siege: + Captain America (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9416","name":"Siege: + Dark Avengers (2010)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/295","name":"Realm + of Kings"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/297","name":"Fall + of the Hulks"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_series_by_ID.yml b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_series_by_ID.yml new file mode 100644 index 0000000..d89ade5 --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_series_by_ID.yml @@ -0,0 +1,455 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators/8098/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - b98a111f35d43c080ed14d048d9fc5fbdc971f77 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:30:15 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"b98a111f35d43c080ed14d048d9fc5fbdc971f77","data":{"offset":0,"limit":20,"total":9,"count":9,"results":[{"id":20682,"title":"All-New + Wolverine (2015 - 2018)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","urls":[{"type":"detail","url":"http://marvel.com/comics/series/20682/all-new_wolverine_2015_-_2018?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2018,"rating":"","type":"","modified":"2018-08-15T12:09:14-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/5a8dec75f41c0","extension":"jpg"},"creators":{"available":49,"collectionURI":"http://gateway.marvel.com/v1/public/series/20682/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8849","name":"Joyce + Chin","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11482","name":"Jesus + Aburtov","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12989","name":"Jordie + Bellaire","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13021","name":"David + Curiel","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13250","name":"Romulo + Fajardo Jr.","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13162","name":"Erick + Arciniega","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11543","name":"Dan + Brown","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10454","name":"Nathan + Fairbairn","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12981","name":"Michael + Garland","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13025","name":"Bengal","role":"penciler + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9096","name":"Michael + Cho","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13031","name":"Juann + Cabal","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13060","name":"Marc + Deering","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12460","name":"Marco + Failla","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/592","name":"Rachel + Dodson","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer (cover)"}],"returned":20},"characters":{"available":19,"collectionURI":"http://gateway.marvel.com/v1/public/series/20682/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009208","name":"Brood"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011001","name":"Daken"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor + Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010735","name":"Drax"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011299","name":"Guardians + of the Galaxy"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017831","name":"Ironheart + (Riri Williams)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick + Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009554","name":"Sabretooth"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010860","name":"Squirrel + Girl"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009679","name":"Tyger + Tiger"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009707","name":"Wasp"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":19},"stories":{"available":102,"collectionURI":"http://gateway.marvel.com/v1/public/series/20682/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","name":"cover + from All-New Wolverine (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123704","name":"story + from All-New Wolverine (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123705","name":"cover + from All-New Wolverine (2015) #1 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123706","name":"story + from All-New Wolverine (2015) #1 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","name":"cover + from All-New Wolverine (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123716","name":"story + from All-New Wolverine (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123719","name":"cover + from All-New Wolverine (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123720","name":"story + from All-New Wolverine (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123725","name":"cover + from All-New Wolverine (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123726","name":"story + from All-New Wolverine (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123727","name":"cover + from All-New Wolverine (2015) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","name":"story + from All-New Wolverine (2015) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123729","name":"cover + from All-New Wolverine (2015) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123730","name":"story + from All-New Wolverine (2015) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","name":"cover + from All-New Wolverine (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123732","name":"story + from All-New Wolverine (2015) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","name":"cover + from All-New Wolverine (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123734","name":"story + from All-New Wolverine (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","name":"cover + from All-New Wolverine (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123736","name":"story + from All-New Wolverine (2015) #9","type":"interiorStory"}],"returned":20},"comics":{"available":51,"collectionURI":"http://gateway.marvel.com/v1/public/series/20682/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56425","name":"All-New + Wolverine (2015) #1 (Adams Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58869","name":"All-New + Wolverine (2015) #2 (Bengal 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56432","name":"All-New + Wolverine (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59165","name":"All-New + Wolverine (2015) #3 (Bengal 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56435","name":"All-New + Wolverine (2015) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58194","name":"All-New + Wolverine (2015) #5 (Michael Cho Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56437","name":"All-New + Wolverine (2015) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58641","name":"All-New + Wolverine (2015) #6 (Tbd Artist Wop Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59863","name":"All-New + Wolverine (2015) #9 (Chin Cw Reenactment Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60195","name":"All-New + Wolverine (2015) #11 (Parker Marvel Tsum Tsum Takeover Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56444","name":"All-New + Wolverine (2015) #13"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20682/events","items":[],"returned":0},"next":null,"previous":null},{"id":16452,"title":"Avengers + (2012 - 2015)","description":"It''s a new day and a new beginning for the + Earth''s Mightiest Heroes, with a brand new team that''s bigger and better + than ever before! And they won''t just be ''Earth''s Mightiest Heroes'', either + - when the galaxy is in danger, the Avengers will answer the call!","resourceURI":"http://gateway.marvel.com/v1/public/series/16452","urls":[{"type":"detail","url":"http://marvel.com/comics/series/16452/avengers_2012_-_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2012,"endYear":2015,"rating":"Rated + T+","type":"ongoing","modified":"2018-08-15T11:57:36-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/50feba5a77285","extension":"jpg"},"creators":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/series/16452/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12374","name":"Agustin + Alessio","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11575","name":"Kris + Anka","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12297","name":"Andre + Lima Araujo","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/412","name":"Carlo + Barberi","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/162","name":"John + Cassaday","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10275","name":"Leonel + Castellani","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/16","name":"Alan + Davis","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel + Acuna","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13068","name":"J. + Scott Campbell","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/694","name":"Mark + Brooks","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8504","name":"Frank + D''ARMATA","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1133","name":"Stefano + Caselli","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike + Deodato","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13567","name":"Mike + Deodato Jr.","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12174","name":"Al + Ewing","role":"writer"}],"returned":20},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/16452/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011027","name":"Captain + Universe"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009599","name":"Skrulls"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011307","name":"Star + Brand"}],"returned":4},"stories":{"available":237,"collectionURI":"http://gateway.marvel.com/v1/public/series/16452/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/98250","name":"Avengers + #1 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/98251","name":"Avengers + #1 interior","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100595","name":"cover + from Avengers (2012) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100596","name":"story + from Avengers (2012) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100599","name":"cover + from Avengers (2012) #1 (BLANK COVER VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100600","name":"story + from Avengers (2012) #1 (BLANK COVER VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100601","name":"cover + from Avengers (2012) #1 (MCNIVEN VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100602","name":"story + from Avengers (2012) #1 (MCNIVEN VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100603","name":"cover + from Avengers (2012) #1 (PERSONALIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100604","name":"story + from Avengers (2012) #1 (PERSONALIZED VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100607","name":"cover + from Avengers (2012) #1 (TBD ARTIST SKETCH VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100608","name":"story + from Avengers (2012) #1 (TBD ARTIST SKETCH VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100609","name":"cover + from Avengers (2012) #1 (RIBIC VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100610","name":"story + from Avengers (2012) #1 (RIBIC VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100611","name":"cover + from Avengers (2012) #1 (MIDTOWN VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100612","name":"story + from Avengers (2012) #1 (MIDTOWN VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100613","name":"cover + from Avengers (2012) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100614","name":"story + from Avengers (2012) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100617","name":"cover + from Avengers (2012) #2 (JRJR VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/100618","name":"story + from Avengers (2012) #2 (JRJR VARIANT)","type":"interiorStory"}],"returned":20},"comics":{"available":119,"collectionURI":"http://gateway.marvel.com/v1/public/series/16452/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43528","name":"Avengers + (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44647","name":"Avengers + (2012) #1 (Midtown Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46855","name":"Avengers + (2012) #1 (Deadpool Gangnam Style Sketch Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44646","name":"Avengers + (2012) #1 (Ribic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46980","name":"Avengers + (2012) #1 (Hastings Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44643","name":"Avengers + (2012) #1 (Personalized Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43530","name":"Avengers + (2012) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47038","name":"Avengers + (2012) #1 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43531","name":"Avengers + (2012) #1 (Mcniven Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44645","name":"Avengers + (2012) #1 (Tbd Artist Sketch Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46854","name":"Avengers + (2012) #1 (Deadpool Gangnam Style Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43529","name":"Avengers + (2012) #1 (Blank Cover Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43532","name":"Avengers + (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47351","name":"Avengers + (2012) #2 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44651","name":"Avengers + (2012) #2 (Ribic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44649","name":"Avengers + (2012) #2 (Jrjr Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43533","name":"Avengers + (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47499","name":"Avengers + (2012) #3 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45835","name":"Avengers + (2012) #3 (Brooks Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45837","name":"Avengers + (2012) #3 (Avengers 50th Anniversary Variant)"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/16452/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"}],"returned":2},"next":null,"previous":null},{"id":20448,"title":"Black + Widow (2016 - 2017)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/20448","urls":[{"type":"detail","url":"http://marvel.com/comics/series/20448/black_widow_2016_-_2017?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2016,"endYear":2017,"rating":"","type":"","modified":"2019-08-21T11:46:02-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/d0/5d5d672e66433","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/20448/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","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/5160","name":"Philip + J. Noto","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12698","name":"Yasmine + Putri","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11799","name":"Nathan + Edmondson","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8221","name":"Chris + Samnee","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12339","name":"Kevin + Wada","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11921","name":"Jacob + Thomas","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10279","name":"Matthew + Wilson","role":"colorist (cover)"}],"returned":11},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/20448/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black + Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009368","name":"Iron + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010740","name":"Winter + Soldier"}],"returned":3},"stories":{"available":40,"collectionURI":"http://gateway.marvel.com/v1/public/series/20448/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121789","name":"cover + from Black Widow (2016) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121790","name":"story + from Black Widow (2016) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121793","name":"cover + from Black Widow (2016) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121794","name":"story + from Black Widow (2016) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121797","name":"cover + from Black Widow (2016) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121798","name":"story + from Black Widow (2016) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121799","name":"cover + from Black Widow (2016) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121800","name":"story + from Black Widow (2016) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121801","name":"cover + from Black Widow (2016) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121802","name":"story + from Black Widow (2016) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121803","name":"cover + from Black Widow (2016) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121804","name":"story + from Black Widow (2016) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121805","name":"cover + from Black Widow (2016) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121806","name":"story + from Black Widow (2016) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121807","name":"cover + from Black Widow (2016) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121808","name":"story + from Black Widow (2016) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121809","name":"cover + from Black Widow (2016) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121810","name":"story + from Black Widow (2016) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121811","name":"cover + from Black Widow (2016) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121812","name":"story + from Black Widow (2016) #10","type":"interiorStory"}],"returned":20},"comics":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/series/20448/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55373","name":"Black + Widow (2016) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58344","name":"Black + Widow (2016) #1 (Lotay Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58656","name":"Black + Widow (2016) #1 (Tbd Artist Wop Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58657","name":"Black + Widow (2016) #1 (Christopher Action Figure Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58658","name":"Black + Widow (2016) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55914","name":"Black + Widow (2016) #1 (Noto Hip-​Hop Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55375","name":"Black + Widow (2016) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55377","name":"Black + Widow (2016) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55378","name":"Black + Widow (2016) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55379","name":"Black + Widow (2016) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55380","name":"Black + Widow (2016) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55381","name":"Black + Widow (2016) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62027","name":"Black + Widow (2016) #7 (Noto Champions Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62028","name":"Black + Widow (2016) #7 (Brigman Classic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62029","name":"Black + Widow (2016) #7 (Putri Story Thus Far Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55382","name":"Black + Widow (2016) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55383","name":"Black + Widow (2016) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55384","name":"Black + Widow (2016) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55385","name":"Black + Widow (2016) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55386","name":"Black + Widow (2016) #12"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20448/events","items":[],"returned":0},"next":null,"previous":null},{"id":19453,"title":"Guardians + Team-Up (2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19453/guardians_team-up_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2015,"rating":"","type":"","modified":"2019-09-12T16:41:11-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/10/5506f6e77f7c1","extension":"jpg"},"creators":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/series/19453/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/365","name":"Pasqual + Ferry","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3996","name":"Jose + Ladronn","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/757","name":"Clay + Mann","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/243","name":"Mike + Mayhew","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/805","name":"Mike + Norton","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2985","name":"Javier + Pulido","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/72","name":"Humberto + Ramos","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/12442","name":"Ray + Fawkes","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12419","name":"Nick + Giovannetti","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11530","name":"Sam + Humphries","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy + Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/796","name":"John + Layman","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9443","name":"Shawn + Crystal","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12694","name":"Gustavo + Duarte","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12705","name":"Diogo + Saido","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12456","name":"Katie + Kubert","role":"editor"}],"returned":20},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19453/characters","items":[],"returned":0},"stories":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/series/19453/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115415","name":"cover + from Guardians Team-Up (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115416","name":"story + from Guardians Team-Up (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115419","name":"cover + from Guardians Team-Up (2015) #1 (YOUNG VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115420","name":"story + from Guardians Team-Up (2015) #1 (YOUNG VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115421","name":"cover + from Guardians Team-Up (2015) #1 (FERRY VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115422","name":"story + from Guardians Team-Up (2015) #1 (FERRY VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115423","name":"cover + from Guardians Team-Up (2015) #1 (LADRONN INHUMAN 50TH ANNIVERSARY VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115424","name":"story + from Guardians Team-Up (2015) #1 (LADRONN INHUMAN 50TH ANNIVERSARY VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115425","name":"cover + from Guardians Team-Up (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115426","name":"story + from Guardians Team-Up (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115429","name":"cover + from Guardians Team-Up (2015) #2 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115430","name":"story + from Guardians Team-Up (2015) #2 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115431","name":"cover + from Guardians Team-Up (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115432","name":"story + from Guardians Team-Up (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115433","name":"cover + from Guardians Team-Up (2015) #3 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115434","name":"story + from Guardians Team-Up (2015) #3 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115435","name":"cover + from Guardians Team-Up (2015) #3 (SORRENTINO COSMIC CHARACTER VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115436","name":"story + from Guardians Team-Up (2015) #3 (SORRENTINO COSMIC CHARACTER VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115437","name":"cover + from Guardians Team-Up (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115438","name":"story + from Guardians Team-Up (2015) #4","type":"interiorStory"}],"returned":20},"comics":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/19453/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51919","name":"Guardians + Team-Up (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51921","name":"Guardians + Team-Up (2015) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51922","name":"Guardians + Team-Up (2015) #1 (Ferry Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51923","name":"Guardians + Team-Up (2015) #1 (Ladronn Inhuman 50th Anniversary Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51924","name":"Guardians + Team-Up (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51926","name":"Guardians + Team-Up (2015) #2 (Renaud Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51927","name":"Guardians + Team-Up (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51928","name":"Guardians + Team-Up (2015) #3 (Duarte Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51929","name":"Guardians + Team-Up (2015) #3 (Sorrentino Cosmically Enhanced Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51930","name":"Guardians + Team-Up (2015) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51931","name":"Guardians + Team-Up (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51932","name":"Guardians + Team-Up (2015) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51933","name":"Guardians + Team-Up (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55100","name":"Guardians + Team-Up (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55101","name":"Guardians + Team-Up (2015) #10"}],"returned":16},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19453/events","items":[],"returned":0},"next":null,"previous":null},{"id":19608,"title":"Siege + (2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19608/siege_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2015,"rating":"","type":"","modified":"2019-10-01T19:18:55-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/c0/55df3d8798c94","extension":"jpg"},"creators":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/19608/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12775","name":"W. + Scott Forbes","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5160","name":"Philip + J. Noto","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12471","name":"Filipe + Andrade","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12823","name":"Jorge + Coelho","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12991","name":"Rachelle + Rosenberg","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12888","name":"James + Stokoe","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13221","name":"Julian + Tedesco","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4267","name":"Andy + Troy","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12922","name":"W. + Scott Forbes","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13101","name":"Andrew + C. Robinson","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8901","name":"Kieron + Gillen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13242","name":"Michael + Kaluta","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13505","name":"Juan + Prieto","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11921","name":"Jacob + Thomas","role":"editor"}],"returned":16},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19608/characters","items":[],"returned":0},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/19608/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116139","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116140","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116141","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116142","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116145","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116146","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120845","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST MAOS VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120846","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST MAOS VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120936","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122315","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (ROBINSON VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122316","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #1 (ROBINSON VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123555","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #3 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123556","name":"story + from Night Watch of S.H.I.E.L.D. (2015) #3 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/126105","name":"SIEGE + 3 (SW, WITH DIGITAL CODE)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/126106","name":"SIEGE + 3 (SW, WITH DIGITAL CODE)","type":"interiorStory"}],"returned":16},"comics":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/19608/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52281","name":"Siege + (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54812","name":"Siege + (2015) #1 (BUDICH MAOS VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52282","name":"Siege + (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52283","name":"Siege + (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56296","name":"Siege + (2015) #3 (Noto Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52284","name":"Siege + (2015) #4"}],"returned":7},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19608/events","items":[],"returned":0},"next":null,"previous":null},{"id":20505,"title":"Spider-Gwen + (2015 - 2018)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","urls":[{"type":"detail","url":"http://marvel.com/comics/series/20505/spider-gwen_2015_-_2018?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2018,"rating":"","type":"","modified":"2018-12-13T16:07:05-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/80/5aa95ceebdc9c","extension":"jpg"},"creators":{"available":28,"collectionURI":"http://gateway.marvel.com/v1/public/series/20505/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13465","name":"Lauren + Affe","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13163","name":"Jordan + Gibson","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13036","name":"Emilio + Lopez","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11575","name":"Kris + Anka","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13274","name":"Ema + Lupacchino","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13024","name":"Hannah + Blumenreich","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12823","name":"Jorge + Coelho","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/359","name":"John + Dell","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12782","name":"Veronica + Fish","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13265","name":"Olivia + Margraf","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13068","name":"J. + Scott Campbell","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9096","name":"Michael + Cho","role":"painter (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12993","name":"Vc + Travis Lanham","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12239","name":"Guru + Efx","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12457","name":"Edward + Devin Lewis","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"}],"returned":20},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/20505/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1016181","name":"Spider-Man + (Miles Morales)"}],"returned":2},"stories":{"available":82,"collectionURI":"http://gateway.marvel.com/v1/public/series/20505/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122391","name":"cover + from Spider-Gwen (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122392","name":"story + from Spider-Gwen (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122395","name":"cover + from Spider-Gwen (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122396","name":"story + from Spider-Gwen (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122399","name":"cover + from Spider-Gwen (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122400","name":"story + from Spider-Gwen (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122401","name":"cover + from Spider-Gwen (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122402","name":"story + from Spider-Gwen (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122403","name":"cover + from Spider-Gwen (2015) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122404","name":"story + from Spider-Gwen (2015) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122407","name":"cover + from Spider-Gwen (2015) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122408","name":"story + from Spider-Gwen (2015) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122409","name":"cover + from Spider-Gwen (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","name":"story + from Spider-Gwen (2015) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122411","name":"cover + from Spider-Gwen (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","name":"story + from Spider-Gwen (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122413","name":"cover + from Spider-Gwen (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122414","name":"story + from Spider-Gwen (2015) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122415","name":"cover + from Spider-Gwen (2015) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122416","name":"story + from Spider-Gwen (2015) #10","type":"interiorStory"}],"returned":20},"comics":{"available":41,"collectionURI":"http://gateway.marvel.com/v1/public/series/20505/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57464","name":"Spider-Gwen + (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55674","name":"Spider-Gwen + (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57118","name":"Spider-Gwen + (2015) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55676","name":"Spider-Gwen + (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55678","name":"Spider-Gwen + (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58978","name":"Spider-Gwen + (2015) #3 (Rodriguez 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55679","name":"Spider-Gwen + (2015) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59329","name":"Spider-Gwen + (2015) #4 (Rodriguez 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55680","name":"Spider-Gwen + (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58248","name":"Spider-Gwen + (2015) #5 (Michael Cho Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55682","name":"Spider-Gwen + (2015) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58791","name":"Spider-Gwen + (2015) #6 (Lupacchino Wop Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55685","name":"Spider-Gwen + (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55686","name":"Spider-Gwen + (2015) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55687","name":"Spider-Gwen + (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60320","name":"Spider-Gwen + (2015) #11 (Pope Black Panther Variant Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55688","name":"Spider-Gwen + (2015) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55689","name":"Spider-Gwen + (2015) #13"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20505/events","items":[],"returned":0},"next":null,"previous":null},{"id":23871,"title":"Spider-Gwen + Vol. 2 (2018)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/23871","urls":[{"type":"detail","url":"http://marvel.com/comics/series/23871/spider-gwen_vol_2_2018?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2018,"endYear":2018,"rating":"","type":"collection","modified":"2017-12-18T18:22:10-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/23871/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9031","name":"Marcio + Takara","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12848","name":"Chris + Visions","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12399","name":"Robbi + Rodriguez","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff + Youngquist","role":"editor"}],"returned":7},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/23871/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011347","name":"Spider-Ham + (Larval Earth)"}],"returned":2},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/23871/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/142572","name":"cover + from SPIDER-GWEN VOL. 2 HC (2018) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/142573","name":"story + from SPIDER-GWEN VOL. 2 HC (2018) #2","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/23871/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65726","name":"Spider-Gwen + Vol. 2 (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/23871/events","items":[],"returned":0},"next":null,"previous":null},{"id":26022,"title":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (2019)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/26022","urls":[{"type":"detail","url":"http://marvel.com/comics/series/26022/spider-gwen_ghost-spider_vol_2_-_impossible_year_2019?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2019,"endYear":2019,"rating":"","type":"collection","modified":"2019-08-29T17:16:35-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/26022/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13556","name":"Seanan + Mcguire","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/495","name":"Takeshi + Miyazawa","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff + Youngquist","role":"editor"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/26022/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017603","name":"Spider-Gwen + (Gwen Stacy)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/26022/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158772","name":"cover + from SPIDER-GWEN VOL. 2 TPB (2019) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158773","name":"story + from SPIDER-GWEN VOL. 2 TPB (2019) #2","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/26022/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71398","name":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/26022/events","items":[],"returned":0},"next":null,"previous":null},{"id":19676,"title":"Spider-Man + & the X-Men (2014 - 2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19676","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19676/spider-man_the_x-men_2014_-_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2014,"endYear":2015,"rating":"","type":"","modified":"2019-10-01T19:32:38-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/50/546f7dbd52160","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/19676/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11875","name":"Nick + Bradshaw","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12437","name":"Stacey + Lee","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11354","name":"Declan + Shalvey","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7190","name":"Skottie + Young","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12460","name":"Marco + Failla","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12489","name":"R.B. + Silva","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12996","name":"Ian + Herring","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13164","name":"Elliott + Kalan","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12456","name":"Katie + Kubert","role":"editor"}],"returned":11},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19676/characters","items":[],"returned":0},"stories":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/series/19676/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116661","name":"cover + from Spider-Man & the X-Men (2014) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116662","name":"story + from Spider-Man & the X-Men (2014) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116665","name":"cover + from Spider-Man & the X-Men (2014) #1 (YOUNG VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116666","name":"story + from Spider-Man & the X-Men (2014) #1 (YOUNG VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116667","name":"cover + from Spider-Man & the X-Men (2014) #1 (BENGAL VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116668","name":"story + from Spider-Man & the X-Men (2014) #1 (BENGAL VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116671","name":"cover + from Spider-Man & the X-Men (2014) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116672","name":"story + from Spider-Man & the X-Men (2014) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116673","name":"cover + from Spider-Man & the X-Men (2014) #2 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116674","name":"story + from Spider-Man & the X-Men (2014) #2 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116675","name":"cover + from Spider-Man & the X-Men (2014) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116676","name":"story + from Spider-Man & the X-Men (2014) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116677","name":"cover + from Spider-Man & the X-Men (2014) #3 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116678","name":"story + from Spider-Man & the X-Men (2014) #3 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116679","name":"cover + from Spider-Man & the X-Men (2014) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116680","name":"story + from Spider-Man & the X-Men (2014) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116681","name":"cover + from Spider-Man & the X-Men (2014) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116682","name":"story + from Spider-Man & the X-Men (2014) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116683","name":"cover + from Spider-Man & the X-Men (2014) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116684","name":"story + from Spider-Man & the X-Men (2014) #6","type":"interiorStory"}],"returned":20},"comics":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/19676/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52542","name":"Spider-Man + & the X-Men (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52544","name":"Spider-Man + & the X-Men (2014) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52545","name":"Spider-Man + & the X-Men (2014) #1 (Bengal Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52547","name":"Spider-Man + & the X-Men (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52548","name":"Spider-Man + & the X-Men (2014) #2 (March Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52549","name":"Spider-Man + & the X-Men (2014) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52550","name":"Spider-Man + & the X-Men (2014) #3 (Shalvey Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52551","name":"Spider-Man + & the X-Men (2014) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52552","name":"Spider-Man + & the X-Men (2014) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52553","name":"Spider-Man + & the X-Men (2014) #6"}],"returned":10},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19676/events","items":[],"returned":0},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_stories_by_ID.yml b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_stories_by_ID.yml new file mode 100644 index 0000000..f0c6cb1 --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_a_creator_s_stories_by_ID.yml @@ -0,0 +1,159 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators/8098/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 92832c67e4e786dc36671540b3908de53720167b + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:30:17 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"92832c67e4e786dc36671540b3908de53720167b","data":{"offset":0,"limit":20,"total":25,"count":20,"results":[{"id":114397,"title":"cover + from Avengers (2012) #34.2","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/114397","type":"cover","modified":"2016-05-25T15:18:32-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114397/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114397/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011307","name":"Star + Brand"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114397/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114397/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114397/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"}},{"id":114398,"title":"story from Avengers (2012) #34.2","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/114398","type":"story","modified":"2015-01-05T16:15:19-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114398/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11530","name":"Sam + Humphries","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114398/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114398/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114398/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114398/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"}},{"id":114400,"title":"story from Avengers (2012) #34.2 (ARAUJO + VARIANT)","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/114400","type":"story","modified":"2015-01-05T16:37:50-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114400/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11530","name":"Sam + Humphries","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114400/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114400/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114400/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51411","name":"Avengers + (2012) #34.2 (Araujo Variant)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/114400/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51411","name":"Avengers + (2012) #34.2 (Araujo Variant)"}},{"id":115445,"title":"cover from Guardians + Team-Up (2015) #8","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/115445","type":"cover","modified":"2015-07-21T14:12:10-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115445/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115445/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115445/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115445/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115445/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"}},{"id":115446,"title":"story from Guardians Team-Up (2015) + #8","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/115446","type":"story","modified":"2015-07-21T14:13:04-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115446/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12442","name":"Ray + Fawkes","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115446/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115446/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115446/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/115446/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"}},{"id":116667,"title":"cover from Spider-Man & the X-Men + (2014) #1 (BENGAL VARIANT)","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/116667","type":"cover","modified":"2014-12-08T15:18:53-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/116667/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/116667/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/116667/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19676","name":"Spider-Man + & the X-Men (2014 - 2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/116667/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52545","name":"Spider-Man + & the X-Men (2014) #1 (Bengal Variant)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/116667/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52545","name":"Spider-Man + & the X-Men (2014) #1 (Bengal Variant)"}},{"id":120935,"title":"cover from + Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","type":"cover","modified":"2015-07-09T16:42:01-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/120935/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/120935/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/120935/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","name":"Siege + (2015)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/120935/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/120935/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"}},{"id":122410,"title":"story from Spider-Gwen + (2015) #7","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","type":"story","modified":"2016-03-04T20:25:10-0500","thumbnail":null,"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122410/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"}],"returned":3},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122410/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122410/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122410/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122410/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"}},{"id":122412,"title":"story from Spider-Gwen (2015) #8","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","type":"story","modified":"2016-04-25T16:41:39-0400","thumbnail":null,"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122412/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11306","name":"Jason + Latour","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"}],"returned":3},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122412/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122412/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122412/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/122412/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"}},{"id":123703,"title":"cover from All-New Wolverine (2015) #1","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","type":"cover","modified":"2018-04-09T15:12:40-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123703/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123703/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123703/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123703/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123703/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"}},{"id":123715,"title":"cover from All-New Wolverine + (2015) #2","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","type":"cover","modified":"2018-04-09T15:08:58-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123715/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"}],"returned":1},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123715/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":2},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123715/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123715/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123715/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"}},{"id":123728,"title":"story from All-New Wolverine + (2015) #5","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","type":"story","modified":"2016-02-01T14:33:02-0500","thumbnail":null,"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123728/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12447","name":"Tom + Taylor","role":"writer"}],"returned":4},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123728/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123728/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123728/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123728/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"}},{"id":123731,"title":"cover from All-New Wolverine + (2015) #7","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","type":"cover","modified":"2018-04-09T15:01:52-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123731/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123731/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010860","name":"Squirrel + Girl"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123731/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123731/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123731/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"}},{"id":123733,"title":"cover from All-New Wolverine + (2015) #8","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","type":"cover","modified":"2016-05-03T12:42:24-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123733/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123733/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123733/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123733/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123733/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"}},{"id":123735,"title":"cover from All-New Wolverine + (2015) #9","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","type":"cover","modified":"2018-04-09T14:59:46-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123735/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123735/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123735/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123735/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123735/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"}},{"id":123737,"title":"cover from All-New Wolverine + (2015) #10","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123737","type":"cover","modified":"2016-04-25T10:05:39-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123737/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123737/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123737/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123737/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123737/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"}},{"id":123739,"title":"cover from All-New Wolverine + (2015) #11","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123739","type":"cover","modified":"2016-08-08T15:07:45-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123739/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123739/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123739/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123739/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123739/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"}},{"id":123741,"title":"cover from All-New Wolverine + (2015) #12","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/123741","type":"cover","modified":"2018-04-09T14:56:03-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123741/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123741/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017844","name":"Honey + Badger (Gabrielle Kinney)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017810","name":"Old + Man Logan (Earth-807128)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009722","name":"X-23"}],"returned":3},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123741/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123741/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/123741/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"}},{"id":133094,"title":"cover from All-New Wolverine + (2015) #13 (TBD ARTIST CONNECTING VARIANT A)","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/133094","type":"cover","modified":"2016-09-23T16:53:44-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133094/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133094/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133094/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133094/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","name":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133094/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","name":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)"}},{"id":133100,"title":"cover + from All-New Wolverine (2015) #14 (TBD ARTIST CONNECTING VARIANT B)","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/133100","type":"cover","modified":"2016-10-24T17:21:32-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133100/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8098","name":"Bengal","role":"penciller + (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4600","name":"Mark + Paniccia","role":"editor"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133100/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133100/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133100/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","name":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/133100/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","name":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_creators.yml b/spec/vcr/Harkness_CreatorResource/gets_creators.yml new file mode 100644 index 0000000..984549a --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_creators.yml @@ -0,0 +1,202 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 7846d81665af7fb1a0237985ef1b710c44c6f70e + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 23:03:21 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"7846d81665af7fb1a0237985ef1b710c44c6f70e","data":{"offset":0,"limit":20,"total":5815,"count":20,"results":[{"id":13970,"firstName":"#O","middleName":"","lastName":"","suffix":"","fullName":"#O","modified":"2019-12-11T17:10:07-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/13970","comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8546","name":"Earth + X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10492","name":"Paradise + X (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15902","name":"Paradise + X Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11914","name":"Universe + X (2000)"}],"returned":4},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"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/2085","name":"Universe + X (2000 - 2001)"}],"returned":4},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25655","name":"interior","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26016","name":"Paradise + X Issue 0","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26318","name":"interior + Earth X #O","type":"interiorStory"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/13970/o?utm_campaign=apiRef&utm_source=abcd"}]},{"id":13971,"firstName":"#X","middleName":"","lastName":"","suffix":"","fullName":"#X","modified":"2019-12-11T17:21:29-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/13971","comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13971/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4241","name":"EARTH + X TPB [NEW PRINTING] (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8547","name":"Earth + X (1999) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/69274","name":"Paradise + X (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11901","name":"Universe + X (2000)"}],"returned":4},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13971/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2059","name":"Paradise + X (2002 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2085","name":"Universe + X (2000 - 2001)"}],"returned":4},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13971/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24903","name":"Earth + X","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24941","name":"Earth + X Chapter X","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25632","name":"interior + X","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/152331","name":"story + from Paradise X (2003) #X","type":"interiorStory"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13971/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/13971/x?utm_campaign=apiRef&utm_source=abcd"}]},{"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":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6606/stories","items":[],"returned":0},"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=abcd"}]},{"id":1168,"firstName":"All + Thumbs Creative","middleName":"","lastName":"","suffix":"","fullName":"All + Thumbs Creative","modified":"2018-07-24T11:50:20-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/creators/1168","comics":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1168/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68960","name":"Marvel + Masterworks: Captain America Vol. 10 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28003","name":"Marvel + Masterworks: Captain America Vol. 5 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25797","name":"Marvel + Masterworks: Deathlok Vol. 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62853","name":"Marvel + Masterworks: Doctor Strange Vol. 8 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60438","name":"Marvel + Masterworks: Marvel Two-In-One Vol. 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66207","name":"Marvel + Masterworks: Marvel Two-In-One Vol. 3 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21816","name":"Marvel + Masterworks: The Amazing Spider-Man Vol. 10 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66777","name":"Marvel + Masterworks: The Avengers Vol. 18 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24297","name":"Marvel + Masterworks: The Avengers Vol. 9 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40080","name":"Marvel + Masterworks: The Fantastic Four (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28021","name":"Marvel + Masterworks: The Fantastic Four Vol. 12 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60444","name":"Marvel + Masterworks: The Fantastic Four Vol. 19 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67357","name":"Marvel + Masterworks: The Fantastic Four Vol. 20 (Hardcover)"}],"returned":13},"series":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1168/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/25021","name":"Marvel + Masterworks: Captain America Vol. 10 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8967","name":"Marvel + Masterworks: Captain America Vol. 5 (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8031","name":"Marvel + Masterworks: Deathlok Vol. 1 (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23051","name":"Marvel + Masterworks: Doctor Strange Vol. 8 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22319","name":"Marvel + Masterworks: Marvel Two-In-One Vol. 2 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24004","name":"Marvel + Masterworks: Marvel Two-In-One Vol. 3 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5398","name":"Marvel + Masterworks: The Amazing Spider-Man Vol. 10 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24158","name":"Marvel + Masterworks: The Avengers Vol. 18 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7494","name":"Marvel + Masterworks: The Avengers Vol. 9 (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14879","name":"Marvel + Masterworks: The Fantastic Four (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8985","name":"Marvel + Masterworks: The Fantastic Four Vol. 12 (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22325","name":"Marvel + Masterworks: The Fantastic Four Vol. 19 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24345","name":"Marvel + Masterworks: The Fantastic Four Vol. 20 (2018)"}],"returned":13},"stories":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1168/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47950","name":"Amazing + Spider-Man 88-99","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53831","name":"Avengers + 80-88; Hulk 140","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/56854","name":"Interior + #56854","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/61249","name":"Interior + #61249","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/61285","name":"Interior + #61285","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/75266","name":"Interior + #75266","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90430","name":"Cover + #90430","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90431","name":"Interior + #90431","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90936","name":"Interior + #90936","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/131345","name":"cover + from Marvel Masterworks: Marvel Two-in-One (2017)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/131346","name":"story + from Marvel Masterworks: Marvel Two-in-One (2017)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/131357","name":"cover + from Marvel Masterworks: The Fantastic Four (2017)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/131358","name":"story + from Marvel Masterworks: The Fantastic Four (2017)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/137973","name":"cover + from MARVEL MASTERWORKS: DOCTOR STRANGE VOL. 8 HC (2017) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/137974","name":"story + from MARVEL MASTERWORKS: DOCTOR STRANGE VOL. 8 HC (2017) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/143541","name":"cover + from MARVEL MASTERWORKS: MARVEL TWO-IN-ONE VOL. 3 HC (2018) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/143542","name":"story + from MARVEL MASTERWORKS: MARVEL TWO-IN-ONE VOL. 3 HC (2018) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/144709","name":"cover + from MARVEL MASTERWORKS: THE AVENGERS VOL. 18 HC (2018) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/144710","name":"story + from MARVEL MASTERWORKS: THE AVENGERS VOL. 18 HC (2018) #18","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/145900","name":"cover + from MARVEL MASTERWORKS: THE FANTASTIC FOUR VOL. 20 HC (2018) #20","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1168/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1168/all_thumbs_creative?utm_campaign=apiRef&utm_source=abcd"}]},{"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=abcd"}]},{"id":4592,"firstName":"Arno","middleName":"","lastName":"","suffix":"","fullName":"Arno","modified":"2007-01-01T00: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":2,"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/14337","name":"X-Men + (1991) #48"}],"returned":2},"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":2,"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/29228","name":"Divided + Minds","type":"cover"}],"returned":2},"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=abcd"}]},{"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":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17787","name":"West + Coast Avengers (1985) #100"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3630","name":"West + Coast Avengers (1985 - 1994)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3052/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37790","name":"Boys + Will Be Boys","type":""}],"returned":1},"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=abcd"}]},{"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 (1975) #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 (1975 - 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=abcd"}]},{"id":12958,"firstName":"Balak","middleName":"","lastName":"","suffix":"","fullName":"Balak","modified":"2016-12-09T17:26:17-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/12958","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12958/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58635","name":"Ghost + Rider X-Mas Special Infinite Comic (2016) #1"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12958/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/21405","name":"Ghost + Rider X-Mas Special Infinite Comic (2016)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12958/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/127857","name":"story + from A Year of Marvels Infinite Comic K (2016) #1","type":"interiorStory"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12958/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/12958/balak?utm_campaign=apiRef&utm_source=abcd"}]},{"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":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3188/stories","items":[],"returned":0},"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=abcd"}]},{"id":12660,"firstName":"Batt","middleName":"","lastName":"","suffix":"","fullName":"Batt","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/creators/12660","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12660/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29703","name":"Shadowland + (2010) #1"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12660/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9934","name":"Shadowland + (2010)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12660/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64551","name":"Interior + #64551","type":"interiorStory"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12660/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/12660/batt?utm_campaign=apiRef&utm_source=abcd"}]},{"id":6613,"firstName":"Beatty","middleName":"","lastName":"","suffix":"","fullName":"Beatty","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/6613","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6613/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/19817","name":"Marvel + Fanfare (1982) #41"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6613/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/6613/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42324","name":"pin-up","type":""}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6613/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6613/beatty?utm_campaign=apiRef&utm_source=abcd"}]},{"id":6919,"firstName":"Beckett","middleName":"","lastName":"","suffix":"","fullName":"Beckett","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/6919","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6919/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6919/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6919/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/6919/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/6919/beckett?utm_campaign=apiRef&utm_source=abcd"}]},{"id":8098,"firstName":"Bengal","middleName":"","lastName":"","suffix":"","fullName":"Bengal","modified":"2016-09-12T10:46:58-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/creators/8098","comics":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","name":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","name":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61346","name":"All-New + Wolverine (2015) #15 (Bengal Connecting Variant C)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61347","name":"All-New + Wolverine (2015) #16 (Bengal Connecting Variant D)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61348","name":"All-New + Wolverine (2015) #17 (Bengal Connecting Variant E)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51411","name":"Avengers + (2012) #34.2 (Araujo Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20448","name":"Black + Widow (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","name":"Siege + (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23871","name":"Spider-Gwen + Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26022","name":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19676","name":"Spider-Man + & the X-Men (2014 - 2015)"}],"returned":9},"stories":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/71285","name":"Interior + #71285","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81864","name":"Sky + Doll Space Ship #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114397","name":"cover + from Avengers (2012) #34.2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114398","name":"story + from Avengers (2012) #34.2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114400","name":"story + from Avengers (2012) #34.2 (ARAUJO VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115445","name":"cover + from Guardians Team-Up (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115446","name":"story + from Guardians Team-Up (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116667","name":"cover + from Spider-Man & the X-Men (2014) #1 (BENGAL VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","name":"story + from Spider-Gwen (2015) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","name":"story + from Spider-Gwen (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","name":"cover + from All-New Wolverine (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","name":"cover + from All-New Wolverine (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","name":"story + from All-New Wolverine (2015) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","name":"cover + from All-New Wolverine (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","name":"cover + from All-New Wolverine (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","name":"cover + from All-New Wolverine (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123737","name":"cover + from All-New Wolverine (2015) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123739","name":"cover + from All-New Wolverine (2015) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123741","name":"cover + from All-New Wolverine (2015) #12","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/8098/bengal?utm_campaign=apiRef&utm_source=abcd"}]},{"id":9716,"firstName":"Benjamin","middleName":"","lastName":"","suffix":"","fullName":"Benjamin","modified":"2018-07-23T15:12:00-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/40/4bb52c198ff2a","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/9716","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9716/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27398","name":"New + Mutants (2009) #1 (BENJAMIN VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/27465","name":"New + Mutants (2009) #4 (BENJAMIN VARIANT)"}],"returned":2},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9716/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/7455","name":"New + Mutants (2009 - 2012)"}],"returned":1},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9716/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53754","name":"Cover + #53754","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60236","name":"Cover + #60236","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81864","name":"Sky + Doll Space Ship #1","type":"cover"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9716/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/9716/benjamin?utm_campaign=apiRef&utm_source=abcd"}]},{"id":3178,"firstName":"Bernet","middleName":"","lastName":"","suffix":"","fullName":"Bernet","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/3178","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3178/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3178/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3178/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3178/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3178/bernet?utm_campaign=apiRef&utm_source=abcd"}]},{"id":12701,"firstName":"BIT","middleName":"","lastName":"","suffix":"","fullName":"BIT","modified":"2015-03-16T15:59:58-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/creators/12701","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12701/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29754","name":"Black + Widow (2010) #7"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12701/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9706","name":"Black + Widow (2010 - 2011)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12701/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64654","name":"BLACK + WIDOW (2010) #7","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12701/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/12701/bit?utm_campaign=apiRef&utm_source=abcd"}]},{"id":3095,"firstName":"Blank","middleName":"","lastName":"","suffix":"","fullName":"Blank","modified":"2007-01-01T00: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/3095","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3095/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21594","name":"Skrulls! + (2008) #1"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3095/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/5211","name":"Skrulls! + (2008)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3095/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47595","name":"1 + of 1","type":"interiorStory"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3095/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3095/blank?utm_campaign=apiRef&utm_source=abcd"}]},{"id":7646,"firstName":"Blond","middleName":"","lastName":"","suffix":"","fullName":"Blond","modified":"2018-07-23T15:26:46-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/creators/7646","comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7646/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17592","name":"Ultimate + Fantastic Four (2003) #50 (Variant A)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21332","name":"Ultimate + Fantastic Four (2003) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21510","name":"Ultimate + Fantastic Four (2003) #56"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21713","name":"Ultimate + Fantastic Four (2003) #57"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22478","name":"Ultimate + Fantastic Four (2003) #58"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22879","name":"Ultimate + Fantastic Four (2003) #59"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23581","name":"Ultimate + Fantastic Four (2003) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23582","name":"Ultimate + Fantastic Four (2003) #60 (WHITE VARIANT)"}],"returned":8},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7646/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/702","name":"Ultimate + Fantastic Four (2003 - 2009)"}],"returned":1},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7646/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36816","name":"Cosmic + Cube 1 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47113","name":"Namor + War 2 of 4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47426","name":"3 + of 4 - Salem Seven","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/47734","name":"4 + of 4 - Salem Seven","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49832","name":"Ultimatum","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50805","name":"Ultimatum","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52224","name":"Ultimatum","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/52226","name":"Ultimatum","type":"interiorStory"}],"returned":8},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7646/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7646/blond?utm_campaign=apiRef&utm_source=abcd"}]},{"id":7596,"firstName":"Brown","middleName":"","lastName":"","suffix":"","fullName":"Brown","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/7596","comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7596/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7596/series","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7596/stories","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/7596/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/7596/brown?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_CreatorResource/gets_creators_with_params.yml b/spec/vcr/Harkness_CreatorResource/gets_creators_with_params.yml new file mode 100644 index 0000000..6a20cbc --- /dev/null +++ b/spec/vcr/Harkness_CreatorResource/gets_creators_with_params.yml @@ -0,0 +1,87 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&nameStartsWith=Ben&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 483e4ad33b018f7e86c88971f01e78e6e166b9b9 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 23:03:21 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"483e4ad33b018f7e86c88971f01e78e6e166b9b9","data":{"offset":0,"limit":1,"total":56,"count":1,"results":[{"id":8098,"firstName":"Bengal","middleName":"","lastName":"","suffix":"","fullName":"Bengal","modified":"2016-09-12T10:46:58-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/creators/8098","comics":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56438","name":"All-New + Wolverine (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56439","name":"All-New + Wolverine (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56440","name":"All-New + Wolverine (2015) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56441","name":"All-New + Wolverine (2015) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56442","name":"All-New + Wolverine (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56443","name":"All-New + Wolverine (2015) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61342","name":"All-New + Wolverine (2015) #13 (Bengal Connecting Variant a)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61345","name":"All-New + Wolverine (2015) #14 (Bengal Connecting Variant B)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61346","name":"All-New + Wolverine (2015) #15 (Bengal Connecting Variant C)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61347","name":"All-New + Wolverine (2015) #16 (Bengal Connecting Variant D)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61348","name":"All-New + Wolverine (2015) #17 (Bengal Connecting Variant E)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51410","name":"Avengers + (2012) #34.2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51411","name":"Avengers + (2012) #34.2 (Araujo Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51934","name":"Guardians + Team-Up (2015) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54859","name":"Siege + (2015) #1 (BENGAL ANT-SIZED VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55683","name":"Spider-Gwen + (2015) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55684","name":"Spider-Gwen + (2015) #8"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16452","name":"Avengers + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20448","name":"Black + Widow (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19453","name":"Guardians + Team-Up (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19608","name":"Siege + (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20505","name":"Spider-Gwen + (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23871","name":"Spider-Gwen + Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26022","name":"Spider-Gwen: + Ghost-Spider Vol. 2 - Impossible Year (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19676","name":"Spider-Man + & the X-Men (2014 - 2015)"}],"returned":9},"stories":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/71285","name":"Interior + #71285","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81864","name":"Sky + Doll Space Ship #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114397","name":"cover + from Avengers (2012) #34.2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114398","name":"story + from Avengers (2012) #34.2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/114400","name":"story + from Avengers (2012) #34.2 (ARAUJO VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115445","name":"cover + from Guardians Team-Up (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115446","name":"story + from Guardians Team-Up (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116667","name":"cover + from Spider-Man & the X-Men (2014) #1 (BENGAL VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120935","name":"cover + from Night Watch of S.H.I.E.L.D. (2015) #1 (TBD ARTIST ANT-SIZED VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122410","name":"story + from Spider-Gwen (2015) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/122412","name":"story + from Spider-Gwen (2015) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123703","name":"cover + from All-New Wolverine (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123715","name":"cover + from All-New Wolverine (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123728","name":"story + from All-New Wolverine (2015) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123731","name":"cover + from All-New Wolverine (2015) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123733","name":"cover + from All-New Wolverine (2015) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123735","name":"cover + from All-New Wolverine (2015) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123737","name":"cover + from All-New Wolverine (2015) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123739","name":"cover + from All-New Wolverine (2015) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123741","name":"cover + from All-New Wolverine (2015) #12","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/8098/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/8098/bengal?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_Error/returns_an_error_with_invalid_parameters.yml b/spec/vcr/Harkness_Error/returns_an_error_with_invalid_parameters.yml new file mode 100644 index 0000000..754f877 --- /dev/null +++ b/spec/vcr/Harkness_Error/returns_an_error_with_invalid_parameters.yml @@ -0,0 +1,33 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=100000&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 409 + message: Conflict + headers: + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 11 Mar 2023 15:31:00 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"code":409,"status":"You may not request more than 100 items."}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_event_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_event_by_ID.yml new file mode 100644 index 0000000..bbbdc09 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_event_by_ID.yml @@ -0,0 +1,131 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - ec401cb70fd4bc1274245015adcb58890855f0ed + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 00:41:30 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"ec401cb70fd4bc1274245015adcb58890855f0ed","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Apocalypse?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-06-13T11:42:39-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":111,"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","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/13348","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/11063","name":"Terry + Kevin 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/3572","name":"Kelly + Corvese","role":"editor"}],"returned":20},"characters":{"available":91,"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/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009210","name":"Brute"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","name":"Callisto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"}],"returned":20},"stories":{"available":197,"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":"X-Men: + Alpha (1994) #1","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 Bloodlines (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales + from the Age of Apocalyspse: By the Light (1996)"},{"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 (1995)"},{"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"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_event_s_comics_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_event_s_comics_by_ID.yml new file mode 100644 index 0000000..c4ad3fc --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_event_s_comics_by_ID.yml @@ -0,0 +1,600 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 2f60c226062c87efbdf1f941cb5e4ef2ab4ae9bd + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:49:14 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"2f60c226062c87efbdf1f941cb5e4ef2ab4ae9bd","data":{"offset":0,"limit":20,"total":50,"count":20,"results":[{"id":5369,"digitalId":33992,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"Learn + who lives and who dies in either reality as the apocalyptic arc ends in treachery + and tragedy! While certain heroic humans prove their mettle without armor + or magic hammers, it''s a race to see who the X-Men will destroy first: Apocalypse + or themselves! But even with the crisis concluded, new allies and enemies + emerge, guaranteeing that reality will still never be the same! Featuring + the dawn of Gene Nation and a turning point for the Legacy Virus! Collects + GENERATION NEXT #4, X-CALIBRE #4, X-MAN #4 and #53-54, FACTOR X #4, GAMBIT + AND THE X-TERNALS #4, AMAZING X-MEN #4, WEAPON X #4, X-UNIVERSE #2, X-MEN: + OMEGA, BLINK #4, and X-MEN: PRIME.\r
368 PGS./Rated T+ ...$29.99\r
","modified":"2017-06-16T14:34:06-0400","isbn":"0-7851-2052-1","upc":"5960612052-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Learn + who lives and who dies in either reality as the apocalyptic arc ends in treachery + and tragedy! While certain heroic humans prove their mettle without armor + or magic hammers, it''s a race to see who the X-Men will destroy first: Apocalypse + or themselves! But even with the crisis concluded, new allies and enemies + emerge, guaranteeing that reality will still never be the same! Featuring + the dawn of Gene Nation and a turning point for the Legacy Virus! Collects + GENERATION NEXT #4, X-CALIBRE #4, X-MAN #4 and #53-54, FACTOR X #4, GAMBIT + AND THE X-TERNALS #4, AMAZING X-MEN #4, WEAPON X #4, X-UNIVERSE #2, X-MEN: + OMEGA, BLINK #4, and X-MEN: PRIME.\r
368 PGS./Rated T+ ...$29.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/5369/x-men_the_complete_age_of_apocalypse_epic_book_4_trade_paperback?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Men-The-Complete-Age-of-Apocalypse-Epic-Book-4-0/digital-comic/33992?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=33992&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/33992?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18226","name":"X-Man + (1995) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18225","name":"X-Man + (1995) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12371","name":"X-Men: + Prime (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20041","name":"Generation + Next (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17734","name":"Amazing + X-Men (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18166","name":"X-Universe + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18256","name":"X-Calibre + (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20047","name":"Factor + X (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18102","name":"Weapon + X (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18210","name":"X-Man + (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"}],"dates":[{"type":"onsaleDate","date":"2006-11-01T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2014-06-05T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2014-06-05T00:00:00-0400"}],"prices":[{"type":"printPrice","price":9.99},{"type":"digitalPurchasePrice","price":24.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/51dd89a03a03a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/90/51dd89a03a03a","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/c0/4bc5be45d23d0","extension":"jpg"}],"creators":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/comics/5369/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5948","name":"Mike + Dringenberg","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"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/277","name":"Terry + Dodson","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/308","name":"Gary + Frank","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":51,"collectionURI":"http://gateway.marvel.com/v1/public/comics/5369/characters","items":[{"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/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/1009205","name":"Boomer"},{"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/1009223","name":"Captain + Britain"},{"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/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009277","name":"Domino"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009292","name":"Emplate"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009309","name":"Forge"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"}],"returned":20},"stories":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/comics/5369/stories","items":[{"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/32828","name":"The + Maze","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32829","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37634","name":"On + Concencrated Ground","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37635","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38456","name":"Into + the Maelstrom!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38457","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38621","name":"Dying + Breath","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38622","name":"Human + Data File","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38747","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38823","name":"On + Fire","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42929","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42944","name":"Reckonings","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42945","name":"X-Facts: + Final Reflections - It''s the Begining of the End of the Universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66002","name":"X-MEN: + THE COMPLETE AGE OF APOCALYPSE EPIC BOOK 4 0 cover","type":"cover"}],"returned":18},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/5369/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":4090,"digitalId":33990,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"The + mirror gets darker and the Amazing X-Men more Astonished by the minute as + the Age of Apocalypse hits its third quarter! Magneto has dedicated his life + to freeing humanity and mutantkind alike, but will Apocalypse now require + him to destroy reality to save it! Sides are switched and secrets shown with + repercussions ringing from the Savage Land to the Shi''ar Galaxy! Plus: a + rare look at how Apocalypse altered the rest of Marvel''s mightiest! Doctor + Doom and Reed Richards, side-by-side? Matt Murdock and the Kingpin, allies? + Gwen Stacy in mourning for Peter Parker? Avengers, Exiles, etc. in the original + alternate X-saga! Collects X-CALIBRE #2-3, ASTONISHING X-MEN #2-4, GENERATION + NEXT #2-3, X-MAN #2-3, FACTOR X #3, AMAZING X-MEN #3, WEAPON X #3, GAMBIT + & THE X-TERNALS #3 and X-UNIVERSE #1.\r
360 PGS./Rated T+ SUGGESTED FOR + TEENS AND UP ...$29.99\r
","modified":"2018-04-23T16:41:29-0400","isbn":"0-7851-2051-3","upc":"5960612051-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + mirror gets darker and the Amazing X-Men more Astonished by the minute as + the Age of Apocalypse hits its third quarter! Magneto has dedicated his life + to freeing humanity and mutantkind alike, but will Apocalypse now require + him to destroy reality to save it! Sides are switched and secrets shown with + repercussions ringing from the Savage Land to the Shi''ar Galaxy! Plus: a + rare look at how Apocalypse altered the rest of Marvel''s mightiest! Doctor + Doom and Reed Richards, side-by-side? Matt Murdock and the Kingpin, allies? + Gwen Stacy in mourning for Peter Parker? Avengers, Exiles, etc. in the original + alternate X-saga! Collects X-CALIBRE #2-3, ASTONISHING X-MEN #2-4, GENERATION + NEXT #2-3, X-MAN #2-3, FACTOR X #3, AMAZING X-MEN #3, WEAPON X #3, GAMBIT + & THE X-TERNALS #3 and X-UNIVERSE #1.\r
360 PGS./Rated T+ SUGGESTED FOR + TEENS AND UP ...$29.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/4090/x-men_the_complete_age_of_apocalypse_epic_book_3_trade_paperback?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Men-The-Complete-Age-of-Apocalypse-Epic-Book-3-0/digital-comic/33990?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=33990&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/33990?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17738","name":"Astonishing + X-Men (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20046","name":"Factor + X (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18165","name":"X-Universe + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18255","name":"X-Calibre + (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17737","name":"Astonishing + X-Men (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20040","name":"Generation + Next (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18101","name":"Weapon + X (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17733","name":"Amazing + X-Men (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18199","name":"X-Man + (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18254","name":"X-Calibre + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17736","name":"Astonishing + X-Men (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20039","name":"Generation + Next (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18188","name":"X-Man + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17735","name":"Astonishing + X-Men (1995) #1"}],"dates":[{"type":"onsaleDate","date":"2006-04-12T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2014-05-29T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2014-05-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":9.99},{"type":"digitalPurchasePrice","price":24.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/51dd89a67f16a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/51dd89a67f16a","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/40/4bc5f08a460f6","extension":"jpg"}],"creators":{"available":44,"collectionURI":"http://gateway.marvel.com/v1/public/comics/4090/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato + Arlem","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/comics/4090/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"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/1010964","name":"Quicksilver + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010967","name":"Rogue + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010981","name":"Sunfire + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009709","name":"Weapon + X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010994","name":"Wild + Child (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":18},"stories":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/comics/4090/stories","items":[{"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/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/37631","name":"Parents + of the Atom","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37632","name":"X-Facts: + Where have all the Heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37637","name":"Once + More With Feeling","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37638","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37640","name":"Sacrificial + Lambs","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37641","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37643","name":"In + Excess","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37644","name":"X-Facts: + Where have all the heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37645","name":"Holocaust","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37647","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38452","name":"Interior + #38452","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38453","name":"The + Common Right of Toads and Men","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38454","name":"X-Facts: + Where Have All The Heroes Gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38616","name":"Last + Stand","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38617","name":"Human + High Council File A: Membership Roster","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38618","name":"Human + High Council File B: Tactical Map","type":""}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/4090/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":2539,"digitalId":0,"title":"X-Men: The + Complete Age of Apocalypse Epic Book 2 (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"See + your favorite mutants through a dark glass as the epic that literally rebuilt + the X-Men in eight miniseries and more continues! Apocalypse has conquered + half of humankind and is ready to destroy them all! Magneto and his Amazing + X-Men fight to protect humans and mutants alike, only to learn from Bishop + (now on his THIRD reality and counting) that his world might need to be unmade! + Plus: excerpts from Apocalypse''s own files on the alternate-universe X-Men, + and their friends and foes...but which is which? Featuring Blink and Sabretooth + of the Exiles! Collects X-MEN: ALPHA, AGE OF APOCALYPSE: THE CHOSEN, GENERATION + NEXT #1, ASTONISHING X-MEN VOL. 1 #1, X-CALIBRE #1, GAMBIT AND THE X-TERNALS + #1-2, WEAPON X VOL. 1 #1-2, AMAZING X-MEN #1-2, FACTOR X #1-2 and X-MAN #1\r
376 + PGS./T+ SUGGESTED FOR TEENS AND UP ...$29.99\r
","modified":"2017-07-10T17:28:37-0400","isbn":"0-7851-1874-8","upc":"5960611874-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"See + your favorite mutants through a dark glass as the epic that literally rebuilt + the X-Men in eight miniseries and more continues! Apocalypse has conquered + half of humankind and is ready to destroy them all! Magneto and his Amazing + X-Men fight to protect humans and mutants alike, only to learn from Bishop + (now on his THIRD reality and counting) that his world might need to be unmade! + Plus: excerpts from Apocalypse''s own files on the alternate-universe X-Men, + and their friends and foes...but which is which? Featuring Blink and Sabretooth + of the Exiles! Collects X-MEN: ALPHA, AGE OF APOCALYPSE: THE CHOSEN, GENERATION + NEXT #1, ASTONISHING X-MEN VOL. 1 #1, X-CALIBRE #1, GAMBIT AND THE X-TERNALS + #1-2, WEAPON X VOL. 1 #1-2, AMAZING X-MEN #1-2, FACTOR X #1-2 and X-MAN #1\r
376 + PGS./T+ SUGGESTED FOR TEENS AND UP ...$29.99\r
"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/2539/x-men_the_complete_age_of_apocalypse_epic_book_2_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17732","name":"Amazing + X-Men (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18100","name":"Weapon + X (1995) #2"},{"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/20045","name":"Factor + X (1995) #2"},{"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/18099","name":"Weapon + X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18253","name":"X-Calibre + (1995) #1"},{"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/20044","name":"Factor + X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20038","name":"Generation + Next (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/12386","name":"X-Men: + Alpha (1995) #1"}],"dates":[{"type":"onsaleDate","date":"2005-10-05T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/b0/4bc61dec7755f","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/b0/4bc61dec7755f","extension":"jpg"}],"creators":{"available":41,"collectionURI":"http://gateway.marvel.com/v1/public/comics/2539/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","name":"Toinay","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/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"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/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":39,"collectionURI":"http://gateway.marvel.com/v1/public/comics/2539/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009149","name":"Abyss"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","name":"Abyss + (Age of Apocalypse)"},{"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/1009163","name":"Aurora"},{"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/1009223","name":"Captain + Britain"},{"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/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009416","name":"Magma + (Amara Aquilla)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"}],"returned":20},"stories":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/comics/2539/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A + Beginning","type":"interiorStory"},{"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/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/37493","name":"[opening]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37494","name":"Magneto + and Rogue","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37495","name":"X-Man","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37496","name":"Cyclops","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37497","name":"Havok","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37498","name":"Mr. + Sinister","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37499","name":"Storm","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37500","name":"Quicksilver","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37501","name":"Northstar + and Aurora","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37502","name":"Beast","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37503","name":"The + Four Horsemen","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37504","name":"X-Calibre","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37505","name":"The + Human High Council","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37506","name":"Weapon + X and Jean Grey","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37507","name":"Gambit + and the Externals","type":""}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/2539/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":1780,"digitalId":0,"title":"X-Men: The + Complete Age of Apocalypse Epic Book 1 (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"It + begins here! The critically acclaimed, fan-favorite storyline that rocked + the X-Men Universe to its core is collected across four volumes! In a cracked-mirror + world ruled by the genocidal mutant despot Apocalypse, only one hope remains: + Magneto and his Astonishing X-Men! Collects X-MEN CHRONICLES #1 and #2, TALES + FROM THE AGE OF APOCALYPSE: BY THE LIGHT, X-MAN #-1, X-MAN ''96 ANNUAL, TALES + FROM THE AGE OF APOCALYPSE: SINISTER BLOODLINES, and BLINK #1-4.\r\n360 PGS./Marvel + PSR ...$29.99","modified":"2013-07-17T17:04:17-0400","isbn":"0-7851-1714-8","upc":"5960611714-00111","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":0,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"It + begins here! The critically acclaimed, fan-favorite storyline that rocked + the X-Men Universe to its core is collected across four volumes! In a cracked-mirror + world ruled by the genocidal mutant despot Apocalypse, only one hope remains: + Magneto and his Astonishing X-Men! Collects X-MEN CHRONICLES #1 and #2, TALES + FROM THE AGE OF APOCALYPSE: BY THE LIGHT, X-MAN #-1, X-MAN ''96 ANNUAL, TALES + FROM THE AGE OF APOCALYPSE: SINISTER BLOODLINES, and BLINK #1-4.\r\n360 PGS./Marvel + PSR ...$29.99"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/1780/x-men_the_complete_age_of_apocalypse_epic_book_1_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/1452","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (2005)"},"variants":[],"collections":[],"collectedIssues":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17873","name":"Blink + (2001) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17872","name":"Blink + (2001) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17871","name":"Blink + (2001) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17870","name":"Blink + (2001) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18797","name":"Tales + from the Age of Apocalypse: Sinster Bloodlines (1997) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18796","name":"Tales + from the Age of Apocalyspse: By the Light (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18174","name":"X-Man + Annual (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18173","name":"X-Men + Chronicles (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18177","name":"X-Man + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18172","name":"X-Men + Chronicles (1995) #1"}],"dates":[{"type":"onsaleDate","date":"2005-03-30T00:00:00-0500"},{"type":"focDate","date":"1961-01-01T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/51dd8eb7d0c93","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/51dd8eb7d0c93","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/4bc648351a495","extension":"jpg"}],"creators":{"available":59,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1780/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5859","name":"Kolja + Fuchs","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"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/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2695","name":"Armando + Gil","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7231","name":"Michael + Golden","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom + Grummett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan + Hitch","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"}],"returned":20},"characters":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1780/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"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/1009197","name":"Blink"},{"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/1009269","name":"Death"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009509","name":"Madelyne + Pryor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009465","name":"Mystique"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"}],"returned":20},"stories":{"available":28,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1780/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/37987","name":"Blink","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37989","name":"Through + the Looking Glass","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37991","name":"On + the Side of Angels","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37993","name":"Full + Recall","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38624","name":"Origins","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38625","name":"Beast","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38626","name":"Magneto + / Rogue","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38627","name":"Weapon-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38628","name":"Factor-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38629","name":"X-Men","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38630","name":"X-Ternals","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38631","name":"Generation + Next","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38632","name":"Angel","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38634","name":"Shattered + Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38635","name":"Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38636","name":"The + Rescue of Chamber","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38637","name":"The + Transformation of Nemesis to Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38638","name":"The + Funeral of Scarlet Witch","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38639","name":"The + Salvation of Exodus","type":"pinup"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/1780/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17873,"digitalId":5333,"title":"Blink + (2001) #4","issueNumber":4,"variantDescription":"","description":"The truth + about Annihilus is finally revealed in this stunning conclusion!\n","modified":"2017-08-16T15:08:09-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"The + truth about Annihilus is finally revealed in this stunning conclusion!\n"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17873","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17873/blink_2001_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Blink-4/digital-comic/5333?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5333&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5333?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2001-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4bb6e041eeb88","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4bb6e041eeb88","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17873/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/132","name":"Judd + Winick","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5845","name":"Trevor + Mccarthy","role":"penciler"}],"returned":9},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17873/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17873/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37992","name":"Cover + #37992","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37993","name":"Full + Recall","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17873/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17872,"digitalId":5332,"title":"Blink + (2001) #3","issueNumber":3,"variantDescription":"","description":"Her memory + crippled by amnesia, Blink finds herself in the Negative Zone with many questions + and no answers. The Negative Zone is a brutal place under the leadership of + Blastaar. Can Blink survive and return home?\n","modified":"2017-08-16T15:08:07-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Her + memory crippled by amnesia, Blink finds herself in the Negative Zone with + many questions and no answers. The Negative Zone is a brutal place under the + leadership of Blastaar. Can Blink survive and return home?\n"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17872","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17872/blink_2001_3?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Blink-3/digital-comic/5332?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5332&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5332?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2001-05-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/00/4bb6e20628316","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/00/4bb6e20628316","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17872/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/132","name":"Judd + Winick","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5845","name":"Trevor + Mccarthy","role":"penciler"}],"returned":9},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17872/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17872/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37990","name":"Cover + #37990","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37991","name":"On + the Side of Angels","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17872/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17871,"digitalId":5331,"title":"Blink + (2001) #2","issueNumber":2,"variantDescription":"","description":"Blink has + encountered a mysterious stranger in an even stranger land. Is he friend or + foe?\n","modified":"2017-08-16T15:08:07-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Blink + has encountered a mysterious stranger in an even stranger land. Is he friend + or foe?\n"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17871","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17871/blink_2001_2?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Blink-2/digital-comic/5331?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5331&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5331?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2001-03-20T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/4bb6e20b7f63c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/4bb6e20b7f63c","extension":"jpg"}],"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17871/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/132","name":"Judd + Winick","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5846","name":"Tyson + McAdod","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5845","name":"Trevor + Mccarthy","role":"penciler"}],"returned":10},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17871/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17871/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37988","name":"Cover + #37988","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37989","name":"Through + the Looking Glass","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17871/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17870,"digitalId":5330,"title":"Blink + (2001) #1","issueNumber":1,"variantDescription":"","description":"Blink is + now one of Magneto''s X-Men. But being a team player was never her strong + suit! Can Blink fall in line and be a good soldier or is she doomed to play + the solo act?\n","modified":"2018-09-11T14:32:26-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Blink + is now one of Magneto''s X-Men. But being a team player was never her strong + suit! Can Blink fall in line and be a good soldier or is she doomed to play + the solo act?\n"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17870","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17870/blink_2001_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Blink-1/digital-comic/5330?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5330&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5330?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2001-03-10T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/4bb6e21104163","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/4bb6e21104163","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17870/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5846","name":"Tyson + McAdod","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5845","name":"Trevor + Mccarthy","role":"penciler"}],"returned":9},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17870/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17870/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37986","name":"Cover + #37986","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37987","name":"Blink","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17870/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18226,"digitalId":7760,"title":"X-Man + (1995) #54","issueNumber":54,"variantDescription":"","description":null,"modified":"2016-01-05T16:44:34-0500","isbn":"","upc":"75960604204305411","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18226","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18226/x-man_1995_54?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Man-54/digital-comic/7760?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7760&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7760?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1999-08-01T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2009-10-09T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2014-06-03T00:00:00-0400"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/10/596649e76d199","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/10/596649e76d199","extension":"jpg"}],"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18226/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1927","name":"Bud + Larosa","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2338","name":"Luke + Ross","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"}],"returned":5},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18226/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18226/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38782","name":"X-Man + (1995) #54","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67793","name":"X-Man + (1995) #54","type":"cover"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18226/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18225,"digitalId":7759,"title":"X-Man + (1995) #53","issueNumber":53,"variantDescription":"","description":null,"modified":"2016-01-05T16:44:33-0500","isbn":"","upc":"75960604204305311","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18225","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18225/x-man_1995_53?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Man-53/digital-comic/7759?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7759&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7759?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1999-07-01T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2009-10-09T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2014-06-03T00:00:00-0400"}],"prices":[{"type":"printPrice","price":0},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/30/596648c37482a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/30/596648c37482a","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18225/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1927","name":"Bud + Larosa","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2338","name":"Luke + Ross","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3887","name":"Michael + Thomas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1917","name":"Kevin + Tinsley","role":"colorist"}],"returned":6},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18225/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18225/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38781","name":"X-Man + (1995) #53","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67792","name":"X-Man + (1995) #53","type":"cover"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18225/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18797,"digitalId":7090,"title":"Tales + from the Age of Apocalypse: Sinster Bloodlines (1997) #1","issueNumber":1,"variantDescription":"","description":null,"modified":"2012-03-27T15:30:41-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":52,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18797","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18797/tales_from_the_age_of_apocalypse_sinster_bloodlines_1997_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Tales-from-the-Age-of-Apocalypse-Sinster-Blo-1/digital-comic/7090?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7090&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7090?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3676","name":"Tales + from the Age of Apocalypse: Sinster Bloodlines (1997)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1997-12-10T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-04-28T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":5.99},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/b0/63d06b155b61a","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/b0/63d06b155b61a","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/b0/4bb6eb12054de","extension":"jpg"}],"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18797/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5859","name":"Kolja + Fuchs","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6284","name":"Nick + Napolitano","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2989","name":"Matt + Idelson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4613","name":"Mark + Mcnabb","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1917","name":"Kevin + Tinsley","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1221","name":"John + Francis Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/190","name":"Brian + K. Vaughan","role":"writer"}],"returned":11},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18797/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":4},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18797/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40260","name":"Cover + #40260","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40261","name":"Sinister + Bloodlines","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18797/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18796,"digitalId":7089,"title":"Tales + from the Age of Apocalyspse: By the Light (1996) #1","issueNumber":1,"variantDescription":"","description":"Magneto + and his Astonishing X-Men finally have the opportunity they''ve been waiting + for. It''s time to take out Apocalypse! Plus, Magneto versus Diablo and Crusher + Creel, the Absorbing Man!","modified":"2018-08-17T16:05:33-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":48,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Magneto + and his Astonishing X-Men finally have the opportunity they''ve been waiting + for. It''s time to take out Apocalypse! Plus, Magneto versus Diablo and Crusher + Creel, the Absorbing Man!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18796","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18796/tales_from_the_age_of_apocalyspse_by_the_light_1996_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Tales-from-the-Age-of-Apocalyspse-By-the-Lig-1/digital-comic/7089?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7089&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7089?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales + from the Age of Apocalyspse: By the Light (1996)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1996-12-10T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2010-06-30T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2010-11-16T00:00:00-0500"}],"prices":[{"type":"printPrice","price":5.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/5b772a256069c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/5b772a256069c","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/00/4bb68aa7af52b","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18796/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","name":"Joe + Bennett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4628","name":"Jason + Liebig","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1282","name":"Ralph + Macchio","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1969","name":"Joe + Pimentel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4050","name":"Gloria + Vasquez","role":"colorist"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18796/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18796/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40258","name":"Cover + #40258","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40259","name":"By + the Light","type":"interiorStory"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18796/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18174,"digitalId":7761,"title":"X-Man + Annual (1996) #1","issueNumber":1,"variantDescription":"","description":null,"modified":"2020-09-18T02:35:07-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":0,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18174","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18174/x-man_annual_1996_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7761&utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3642","name":"X-Man + Annual (1996 - 1997)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1996-01-01T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2009-10-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":0}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/5964d615cfac6","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/5964d615cfac6","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/80/4bb7bde95136e","extension":"jpg"}],"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18174/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/16","name":"Alan + Davis","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/440","name":"Mark + Farmer","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2121","name":"Robin + Riggs","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2654","name":"Tom + Vincent","role":"colorist"}],"returned":6},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18174/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009509","name":"Madelyne + Pryor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":4},"stories":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18174/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38640","name":"X-MAN + ANNUAL (1996) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38641","name":"Sins + of the Father","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38642","name":"Mind + Games","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38643","name":"Bonus + X-Man Pinup","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/201346","name":"story + from X-MAN ANNUAL 1 (1996) #1","type":"interiorStory"}],"returned":5},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18174/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17738,"digitalId":5109,"title":"Astonishing + X-Men (1995) #4","issueNumber":4,"variantDescription":"","description":null,"modified":"2016-01-05T16:44:32-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17738","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17738/astonishing_x-men_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Astonishing-X-Men-4/digital-comic/5109?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5109&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5109?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","name":"Astonishing + X-Men (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2010-03-24T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-02-23T00:00:00-0500"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/c0/58f618ea1ef3d","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/c0/58f618ea1ef3d","extension":"jpg"}],"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17738/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"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/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1222","name":"Joe + Madureira","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"}],"returned":9},"characters":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17738/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010967","name":"Rogue + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010981","name":"Sunfire + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010994","name":"Wild + Child (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":5},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17738/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37645","name":"Holocaust","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37646","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37647","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67709","name":"Astonishing + X-Men (1995) #4","type":"cover"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17738/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":17734,"digitalId":5059,"title":"Amazing + X-Men (1995) #4","issueNumber":4,"variantDescription":"","description":"Bishop + and Storm do battle with the dread Madri Priests! Meanwhile, Quicksilver and + Banshee attempt to find Jamie Madrox. But does Madrox even want to be found?","modified":"2016-01-05T16:44:33-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Bishop + and Storm do battle with the dread Madri Priests! Meanwhile, Quicksilver and + Banshee attempt to find Jamie Madrox. But does Madrox even want to be found?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/17734","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/17734/amazing_x-men_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Amazing-X-Men-4/digital-comic/5059?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5059&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5059?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3618","name":"Amazing + X-Men (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2007-04-28T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-03-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4bb7ea45b846b","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4bb7ea45b846b","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17734/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2325","name":"Kevin + Somers","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/175","name":"Andy + Kubert","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/610","name":"Matt + Ryan","role":"inker"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17734/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17734/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37633","name":"Cover + #37633","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37634","name":"On + Concencrated Ground","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37635","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""}],"returned":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/17734/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18256,"digitalId":7715,"title":"X-Calibre + (1995) #4","issueNumber":4,"variantDescription":"","description":null,"modified":"2018-04-23T16:43:35-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18256","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18256/x-calibre_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Calibre-4/digital-comic/7715?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7715&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7715?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","name":"X-Calibre + (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-10-29T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-03-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/5adde94ee2a4d","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/5adde94ee2a4d","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/4bb793ee98d20","extension":"jpg"}],"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18256/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","name":"Toinay","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1248","name":"Ken + Lashley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2086","name":"Joe + Rosas","role":"colorist"}],"returned":7},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18256/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010953","name":"Mystique + (Age of Apocalypse)"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18256/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38822","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38823","name":"On + Fire","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38824","name":"?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67821","name":"X-Calibre + 4 cover","type":"cover"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18256/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":20047,"digitalId":5853,"title":"Factor + X (1995) #4","issueNumber":4,"variantDescription":"","description":null,"modified":"2018-04-23T09:34:12-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/20047","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/20047/factor_x_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Factor-X-4/digital-comic/5853?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=5853&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/5853?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3737","name":"Factor + X (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2010-05-06T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-03-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/20/5adde085048cb","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/20/5adde085048cb","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/60/4bb79adb16fde","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20047/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1221","name":"John + Francis Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1872","name":"Glynis + Oliver","role":"colorist"}],"returned":8},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20047/characters","items":[],"returned":0},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20047/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42943","name":"Cover + #42943","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42944","name":"Reckonings","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42945","name":"X-Facts: + Final Reflections - It''s the Begining of the End of the Universe","type":""}],"returned":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20047/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":16080,"digitalId":6001,"title":"Gambit + and the X-Ternals (1995) #4","issueNumber":4,"variantDescription":"","description":null,"modified":"2018-04-23T16:25:59-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[],"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/16080/gambit_and_the_x-ternals_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/Gambit-and-the-X-Ternals-4/digital-comic/6001?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=6001&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/6001?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-03-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/5adde69032d3b","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/5adde69032d3b","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4bb79a8f6e061","extension":"jpg"}],"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/comics/16080/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":7},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/16080/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010936","name":"Jubilee + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":3},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/comics/16080/stories","items":[{"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":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/16080/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":18210,"digitalId":7758,"title":"X-Man + (1995) #4","issueNumber":4,"variantDescription":"","description":"Magneto + has been taken prisoner by Apocalypse! Nate Grey battles Sinister! The key + to victory is revealed! All in this issue!","modified":"2016-01-05T16:44:33-0500","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Magneto + has been taken prisoner by Apocalypse! Nate Grey battles Sinister! The key + to victory is revealed! All in this issue!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/18210","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/18210/x-man_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/X-Man-4/digital-comic/7758?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=7758&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/7758?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2007-04-28T00:00:00-0400"},{"type":"digitalPurchaseDate","date":"2011-03-29T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95},{"type":"digitalPurchasePrice","price":1.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/596642bec04fb","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/596642bec04fb","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18210/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5073","name":"Mike + Thomas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1927","name":"Bud + Larosa","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/18","name":"Jeph + Loeb","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4018","name":"Lisa + Patrick","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1249","name":"Steve + Skroce","role":"penciler"}],"returned":8},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18210/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009561","name":"Sauron"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010973","name":"Shadow + King (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":4},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18210/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38745","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38746","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38747","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67788","name":"X-Man + (1995) #4","type":"cover"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/18210/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}},{"id":20041,"digitalId":6005,"title":"Generation + Next (1995) #4","issueNumber":4,"variantDescription":"","description":"Husk + and Vicente have their back against a wall as the Sugar Man bears down on + them! The only person that can save them is the steel-skinned Colossus! Prepare + for Sugar Man versus Colossus-winner takes all!","modified":"2017-08-16T15:08:09-0400","isbn":"","upc":"","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":36,"textObjects":[{"type":"issue_preview_text","language":"en-us","text":"Husk + and Vicente have their back against a wall as the Sugar Man bears down on + them! The only person that can save them is the steel-skinned Colossus! Prepare + for Sugar Man versus Colossus-winner takes all!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/20041","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/20041/generation_next_1995_4?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=6005&utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/3734","name":"Generation + Next (1995)"},"variants":[],"collections":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1995-06-10T00:00:00-0400"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"},{"type":"unlimitedDate","date":"2008-09-17T00:00:00-0400"}],"prices":[{"type":"printPrice","price":1.95}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/00/5d39b6c865d53","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/7/00/5d39b6c865d53","extension":"jpg"}],"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20041/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20041/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20041/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42927","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42929","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68432","name":"Generation + Next 4 cover","type":"cover"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/comics/20041/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_event_s_series_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_event_s_series_by_ID.yml new file mode 100644 index 0000000..eaf1aa0 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_event_s_series_by_ID.yml @@ -0,0 +1,648 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 6543fc7b5c0002da0eb1e437e63ac6a318d9ded0 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:49:18 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"6543fc7b5c0002da0eb1e437e63ac6a318d9ded0","data":{"offset":0,"limit":20,"total":20,"count":20,"results":[{"id":3614,"title":"Age + of Apocalypse: The Chosen (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3614/age_of_apocalypse_the_chosen_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2020-08-24T12:51:02-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/00/4bad2bdd3c8a9","extension":"jpg"},"creators":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/3614/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11063","name":"Terry + Kevin Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/362","name":"Scott + Hanna","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/438","name":"Karl + Kesel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13392","name":"Sergio + Melia-Borras","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1914","name":"Dan + Panosian","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/844","name":"James + Pascoe","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/19","name":"Tim + Sale","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2030","name":"Bob + Wiacek","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1192","name":"Ian + Churchill","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1163","name":"Tom + Lyle","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4523","name":"Val + Semeiks","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1249","name":"Steve + Skroce","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1286","name":"Howard + Mackie","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5756","name":"Ashley + Underwood","role":"colorist"}],"returned":16},"characters":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/series/3614/characters","items":[{"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/1009182","name":"Bishop"},{"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/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009476","name":"Northstar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009504","name":"Professor + X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":13},"stories":{"available":24,"collectionURI":"http://gateway.marvel.com/v1/public/series/3614/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37492","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37493","name":"[opening]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37494","name":"Magneto + and Rogue","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37495","name":"X-Man","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37496","name":"Cyclops","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37497","name":"Havok","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37498","name":"Mr. + Sinister","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37499","name":"Storm","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37500","name":"Quicksilver","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37501","name":"Northstar + and Aurora","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37502","name":"Beast","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37503","name":"The + Four Horsemen","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37504","name":"X-Calibre","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37505","name":"The + Human High Council","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37506","name":"Weapon + X and Jean Grey","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37507","name":"Gambit + and the Externals","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37508","name":"Colossus","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37509","name":"Angel","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37510","name":"Sabretooth + and Wildchild","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37511","name":"Bishop","type":""}],"returned":20},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3614/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17701","name":"Age + of Apocalypse: The Chosen (1995) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3614/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3618,"title":"Amazing + X-Men (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3618","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3618/amazing_x-men_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"limited","modified":"2019-10-01T13:35:50-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/5d935617b66a0","extension":"jpg"},"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/3618/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2325","name":"Kevin + Somers","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/175","name":"Andy + Kubert","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/610","name":"Matt + Ryan","role":"inker"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3618/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/3618/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37624","name":"Cover + #37624","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37625","name":"The + Crossing Guards","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37626","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37627","name":"Cover + #37627","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37628","name":"Sacrificial + Lambs","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37629","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37630","name":"Cover + #37630","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37631","name":"Parents + of the Atom","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37632","name":"X-Facts: + Where have all the Heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37633","name":"Cover + #37633","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37634","name":"On + Concencrated Ground","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37635","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""}],"returned":12},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3618/comics","items":[{"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"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3618/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3619,"title":"Astonishing + X-Men (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3619/astonishing_x-men_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/e0/4bb63e5f88840","extension":"jpg"},"creators":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/3619/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1222","name":"Joe + Madureira","role":"penciler"},{"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/18","name":"Jeph + Loeb","role":"writer"}],"returned":12},"characters":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/3619/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010944","name":"Magneto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010964","name":"Quicksilver + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010967","name":"Rogue + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010981","name":"Sunfire + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010994","name":"Wild + Child (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":11},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/3619/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37636","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37637","name":"Once + More With Feeling","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37638","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37639","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37640","name":"Sacrificial + Lambs","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37641","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37642","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37643","name":"In + Excess","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37644","name":"X-Facts: + Where have all the heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37645","name":"Holocaust","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37646","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37647","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67706","name":"Astonishing + X-Men (1995) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67707","name":"Astonishing + X-Men (1995) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67708","name":"Astonishing + X-Men (1995) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67709","name":"Astonishing + X-Men (1995) #4","type":"cover"}],"returned":16},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3619/comics","items":[{"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"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3619/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3628,"title":"Blink + (2001)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3628/blink_2001?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2001,"endYear":2001,"rating":"","type":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/50/4bad2c04e320f","extension":"jpg"},"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/3628/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/132","name":"Judd + Winick","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5846","name":"Tyson + McAdod","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5845","name":"Trevor + Mccarthy","role":"penciler"}],"returned":10},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3628/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","name":"Blink"}],"returned":1},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/3628/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37986","name":"Cover + #37986","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37987","name":"Blink","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37988","name":"Cover + #37988","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37989","name":"Through + the Looking Glass","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37990","name":"Cover + #37990","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37991","name":"On + the Side of Angels","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37992","name":"Cover + #37992","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37993","name":"Full + Recall","type":"interiorStory"}],"returned":8},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3628/comics","items":[{"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"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3628/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3737,"title":"Factor + X (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3737","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3737/factor_x_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/30/4c7d53d02fc5d","extension":"jpg"},"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/3737/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1221","name":"John + Francis Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1872","name":"Glynis + Oliver","role":"colorist"}],"returned":8},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/3737/characters","items":[],"returned":0},"stories":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/3737/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42934","name":"Cover + #42934","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42935","name":"Sinsiter + Neglect","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42936","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42937","name":"Cover + #42937","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42938","name":"Abandoned + Children","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42939","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42940","name":"Cover + #42940","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42941","name":"Open + Wounds","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42942","name":"X-Facts: + Where have all the Heroes Gone","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42943","name":"Cover + #42943","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42944","name":"Reckonings","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42945","name":"X-Facts: + Final Reflections - It''s the Begining of the End of the Universe","type":""}],"returned":12},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3737/comics","items":[{"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"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3737/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":2578,"title":"Gambit + and the X-Ternals (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","urls":[{"type":"detail","url":"http://marvel.com/comics/series/2578/gambit_and_the_x-ternals_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2019-09-30T18:50:05-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/60/5d924e553c008","extension":"jpg"},"creators":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/series/2578/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2086","name":"Joe + Rosas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5073","name":"Mike + Thomas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3578","name":"Matt + Webb","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/559","name":"Paul + Pelletier","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":15},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/2578/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010936","name":"Jubilee + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":3},"stories":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/2578/stories","items":[{"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":12},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/2578/comics","items":[{"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"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/2578/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3734,"title":"Generation + Next (1995)","description":"The newly Magneto-created, Colossus-led X-Men + team is on a daring mission to rescue Illyana Rasputin!","resourceURI":"http://gateway.marvel.com/v1/public/series/3734","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3734/generation_next_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2020-06-17T11:30:45-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/b0/5eea3685d5bed","extension":"jpg"},"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/3734/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3734/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/3734/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42918","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42919","name":"From + The Top","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42920","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42921","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42922","name":"Hither + Comes the Suger Man!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42923","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42924","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42925","name":"It + Only Hurts When I Sing.","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42926","name":"X-Facts: + Where Have All The Heroes Gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42927","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42929","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68429","name":"Generation + Next 1 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68430","name":"Generation + Next 2 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68431","name":"Generation + Next 3 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68432","name":"Generation + Next 4 cover","type":"cover"}],"returned":16},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3734/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20038","name":"Generation + Next (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20039","name":"Generation + Next (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20040","name":"Generation + Next (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20041","name":"Generation + Next (1995) #4"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3734/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3676,"title":"Tales + from the Age of Apocalypse: Sinster Bloodlines (1997)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3676","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3676/tales_from_the_age_of_apocalypse_sinster_bloodlines_1997?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1997,"endYear":1997,"rating":"","type":"one + shot","modified":"2019-09-26T20:21:47-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/3676/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5859","name":"Kolja + Fuchs","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6284","name":"Nick + Napolitano","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2989","name":"Matt + Idelson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4613","name":"Mark + Mcnabb","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1917","name":"Kevin + Tinsley","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1221","name":"John + Francis Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/190","name":"Brian + K. Vaughan","role":"writer"}],"returned":11},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3676/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":4},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/3676/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40260","name":"Cover + #40260","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40261","name":"Sinister + Bloodlines","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3676/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18797","name":"Tales + from the Age of Apocalypse: Sinster Bloodlines (1997) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3676/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3675,"title":"Tales + from the Age of Apocalyspse: By the Light (1996)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3675/tales_from_the_age_of_apocalyspse_by_the_light_1996?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1996,"endYear":1996,"rating":"","type":"one + shot","modified":"2018-08-17T16:02:06-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/3675/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","name":"Joe + Bennett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4628","name":"Jason + Liebig","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3710","name":"Mark + Powers","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1282","name":"Ralph + Macchio","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1969","name":"Joe + Pimentel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4050","name":"Gloria + Vasquez","role":"colorist"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3675/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/3675/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40258","name":"Cover + #40258","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40259","name":"By + the Light","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3675/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18796","name":"Tales + from the Age of Apocalyspse: By the Light (1996) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3675/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3635,"title":"Weapon + X (1995)","description":"Weapon X and Jean Grey versus Havok! Plus, witness + the brutal death of a powerful warrior!","resourceURI":"http://gateway.marvel.com/v1/public/series/3635","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3635/weapon_x_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2020-06-17T12:07:50-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/e0/5eea3f5142a25","extension":"jpg"},"creators":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/3635/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2086","name":"Joe + Rosas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5073","name":"Mike + Thomas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3626","name":"Pat + Brosseau","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/438","name":"Karl + Kesel","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/943","name":"Mike + Sellers","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5357","name":"Chris + Warner","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciler"}],"returned":12},"characters":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/series/3635/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009416","name":"Magma + (Amara Aquilla)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009735","name":"Mariko + Yashida"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009410","name":"Moira + MacTaggert"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011211","name":"The + Renegades"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009709","name":"Weapon + X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"}],"returned":12},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/3635/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38446","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38447","name":"Unforgiven + Trespasses","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38448","name":"X-Facts","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38449","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38450","name":"Fire + in the Sky","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38451","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38452","name":"Interior + #38452","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38453","name":"The + Common Right of Toads and Men","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38454","name":"X-Facts: + Where Have All The Heroes Gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38455","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38456","name":"Into + the Maelstrom!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38457","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67717","name":"Weapon + X (1995) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67718","name":"Weapon + X (1995) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67719","name":"Weapon + X (1995) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67720","name":"Weapon + X (1995) #4","type":"cover"}],"returned":16},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3635/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18099","name":"Weapon + X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18100","name":"Weapon + X (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18101","name":"Weapon + X (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18102","name":"Weapon + X (1995) #4"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3635/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3644,"title":"X-Calibre + (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3644/x-calibre_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/60/4bb79a1a060b2","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/3644/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5992","name":"Richard + StarkinUs","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","name":"Toinay","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato + Arlem","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1248","name":"Ken + Lashley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/101","name":"Carlos + Pacheco","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2086","name":"Joe + Rosas","role":"colorist"}],"returned":11},"characters":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/3644/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","name":"Callisto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010953","name":"Mystique + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":3},"stories":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/series/3644/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38813","name":"Interior + #38813","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38814","name":"The + Infernal Gallop","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38815","name":"X-Facts","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38816","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38817","name":"Burn","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38818","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38819","name":"Cover + #38819","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38820","name":"Body + Heat","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38821","name":"X-Facts: + Where Have All The Heroes Gone?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38822","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38823","name":"On + Fire","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38824","name":"?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67819","name":"X-Calibre + 1 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67820","name":"X-Calibre + 2 cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67821","name":"X-Calibre + 4 cover","type":"cover"}],"returned":15},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3644/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18253","name":"X-Calibre + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18254","name":"X-Calibre + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18255","name":"X-Calibre + (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18256","name":"X-Calibre + (1995) #4"}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3644/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3643,"title":"X-Man + (1995 - 2000)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3643/x-man_1995_-_2000?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":2000,"rating":"","type":"","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4bb7bc51b8966","extension":"jpg"},"creators":{"available":38,"collectionURI":"http://gateway.marvel.com/v1/public/series/3643/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3603","name":"Albert + Deschesne","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5962","name":"GCW","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1293","name":"Steven + Grant","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5960","name":"Mario + Capaldi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5985","name":"Mick + Gary","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/362","name":"Scott + Hanna","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/766","name":"Robert + Hunter","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim + Cheung","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2520","name":"Jaye + Gardner","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7629","name":"Dan + Hosek","role":"editor"}],"returned":20},"characters":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/series/3643/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009150","name":"Agent + Zero"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009160","name":"Arclight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009210","name":"Brute"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009277","name":"Domino"},{"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/1011285","name":"Generation + X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009336","name":"Harpoon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009356","name":"Human + Torch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009366","name":"Invisible + Woman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010944","name":"Magneto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009424","name":"Marauders"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009434","name":"Mastermind"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009439","name":"Meltdown"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009410","name":"Moira + MacTaggert"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009459","name":"Mr. + Fantastic"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009483","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009561","name":"Sauron"}],"returned":20},"stories":{"available":265,"collectionURI":"http://gateway.marvel.com/v1/public/series/3643/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38648","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38649","name":"Breeding + Ground","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38650","name":"Maverick","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38651","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38652","name":"Breaking + Away","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38653","name":"X-Facts","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38654","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38655","name":"Confrontation","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38656","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38657","name":"The + X-Cutioner''s Song","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38658","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38659","name":"Trust","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38660","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38661","name":"The + Hunted Below","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38662","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38663","name":"Fallen + From Grace","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38664","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38665","name":"Turning + Point","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38666","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38667","name":"Survivors + of the Storm","type":""}],"returned":20},"comics":{"available":76,"collectionURI":"http://gateway.marvel.com/v1/public/series/3643/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18176","name":"X-Man + (1995) #-1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18177","name":"X-Man + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18188","name":"X-Man + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18199","name":"X-Man + (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18210","name":"X-Man + (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18221","name":"X-Man + (1995) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18232","name":"X-Man + (1995) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18243","name":"X-Man + (1995) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18250","name":"X-Man + (1995) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18251","name":"X-Man + (1995) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18178","name":"X-Man + (1995) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18179","name":"X-Man + (1995) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18180","name":"X-Man + (1995) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18181","name":"X-Man + (1995) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18182","name":"X-Man + (1995) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18183","name":"X-Man + (1995) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18184","name":"X-Man + (1995) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18185","name":"X-Man + (1995) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18186","name":"X-Man + (1995) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18187","name":"X-Man + (1995) #19"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/3643/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":2},"next":null,"previous":null},{"id":3642,"title":"X-Man + Annual (1996 - 1997)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3642","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3642/x-man_annual_1996_-_1997?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1996,"endYear":1997,"rating":"","type":"","modified":"2020-09-18T02:34:53-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/5d26590da4aa6","extension":"jpg"},"creators":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/series/3642/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/16","name":"Alan + Davis","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/440","name":"Mark + Farmer","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2121","name":"Robin + Riggs","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2654","name":"Tom + Vincent","role":"colorist"}],"returned":6},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/3642/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009509","name":"Madelyne + Pryor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009725","name":"X-Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":4},"stories":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/3642/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38640","name":"X-MAN + ANNUAL (1996) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38641","name":"Sins + of the Father","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38642","name":"Mind + Games","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38643","name":"Bonus + X-Man Pinup","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/201346","name":"story + from X-MAN ANNUAL 1 (1996) #1","type":"interiorStory"}],"returned":5},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3642/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18174","name":"X-Man + Annual (1996) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3642/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":3640,"title":"X-Men + Chronicles (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","urls":[{"type":"detail","url":"http://marvel.com/comics/series/3640/x-men_chronicles_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2013-07-17T17:36:47-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/70/51e70e0310fb3","extension":"jpg"},"creators":{"available":26,"collectionURI":"http://gateway.marvel.com/v1/public/series/3640/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"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/354","name":"Tony + Daniel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2695","name":"Armando + Gil","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7231","name":"Michael + Golden","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom + Grummett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan + Hitch","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/56","name":"Jae + Lee","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/570","name":"Klaus + Janson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8125","name":"Bob + Mcleod","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/262","name":"Paul + Neary","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/844","name":"James + Pascoe","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1286","name":"Howard + Mackie","role":"writer"}],"returned":20},"characters":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/series/3640/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"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/1009197","name":"Blink"},{"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/1009269","name":"Death"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009465","name":"Mystique"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009554","name":"Sabretooth"}],"returned":20},"stories":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/series/3640/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38623","name":"X-MEN + CHRONICLES (1995) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38624","name":"Origins","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38625","name":"Beast","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38626","name":"Magneto + / Rogue","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38627","name":"Weapon-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38628","name":"Factor-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38629","name":"X-Men","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38630","name":"X-Ternals","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38631","name":"Generation + Next","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38632","name":"Angel","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38633","name":"X-MEN + CHRONICLES (1995) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38634","name":"Shattered + Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38635","name":"Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38636","name":"The + Rescue of Chamber","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38637","name":"The + Transformation of Nemesis to Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38638","name":"The + Funeral of Scarlet Witch","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38639","name":"The + Salvation of Exodus","type":"pinup"}],"returned":17},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/3640/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18172","name":"X-Men + Chronicles (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18173","name":"X-Men + Chronicles (1995) #2"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/3640/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":2104,"title":"X-Men: + Alpha (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","urls":[{"type":"detail","url":"http://marvel.com/comics/series/2104/x-men_alpha_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"one + shot","modified":"2017-08-21T13:46:47-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/51e705f412d45","extension":"jpg"},"creators":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/series/2104/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1222","name":"Joe + Madureira","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1914","name":"Dan + Panosian","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"}],"returned":13},"characters":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/series/2104/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009149","name":"Abyss"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"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/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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011386","name":"Karma"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009530","name":"Mikhail + Rasputin"}],"returned":20},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/2104/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26280","name":"X-Men: + Alpha (1994) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A + Beginning","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/2104/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/2104/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":2101,"title":"X-Men: + Omega (1995)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","urls":[{"type":"detail","url":"http://marvel.com/comics/series/2101/x-men_omega_1995?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1995,"endYear":1995,"rating":"","type":"","modified":"2013-07-17T16:52:29-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/00/51e703d400d86","extension":"jpg"},"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/2101/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/570","name":"Klaus + Janson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13196","name":"John + Romita Jr.","role":"penciller (cover)"}],"returned":10},"characters":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/series/2101/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/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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009508","name":"Kitty + Pryde"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009399","name":"Legion"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009415","name":"Magik + (Illyana Rasputin)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010944","name":"Magneto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"}],"returned":20},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/2101/stories","items":[{"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/67135","name":"X-MEN: + OMEGA 1 cover","type":"cover"}],"returned":3},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/2101/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/2101/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":1452,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (2005)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/1452","urls":[{"type":"detail","url":"http://marvel.com/comics/series/1452/x-men_the_complete_age_of_apocalypse_epic_book_1_2005?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2005,"endYear":2005,"rating":"MARVEL + PSR","type":"collection","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/4bc648351a495","extension":"jpg"},"creators":{"available":59,"collectionURI":"http://gateway.marvel.com/v1/public/series/1452/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5859","name":"Kolja + Fuchs","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"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/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2695","name":"Armando + Gil","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7231","name":"Michael + Golden","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/483","name":"Tom + Grummett","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan + Hitch","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13348","name":"Liquid! + Color","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4055","name":"Pete + Franco","role":"editor"}],"returned":20},"characters":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/series/1452/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"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/1009197","name":"Blink"},{"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/1009269","name":"Death"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009509","name":"Madelyne + Pryor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009465","name":"Mystique"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"}],"returned":20},"stories":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/series/1452/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/37987","name":"Blink","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37989","name":"Through + the Looking Glass","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37991","name":"On + the Side of Angels","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37993","name":"Full + Recall","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38624","name":"Origins","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38625","name":"Beast","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38626","name":"Magneto + / Rogue","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38627","name":"Weapon-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38628","name":"Factor-X","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38629","name":"X-Men","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38630","name":"X-Ternals","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38631","name":"Generation + Next","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38632","name":"Angel","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38634","name":"Shattered + Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38635","name":"Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38636","name":"The + Rescue of Chamber","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38637","name":"The + Transformation of Nemesis to Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38638","name":"The + Funeral of Scarlet Witch","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38639","name":"The + Salvation of Exodus","type":"pinup"}],"returned":20},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1452/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1452/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":1583,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","urls":[{"type":"detail","url":"http://marvel.com/comics/series/1583/x-men_the_complete_age_of_apocalypse_epic_book_2_2005?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2005,"endYear":2005,"rating":"T+","type":"collection","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/b0/4bc61dec7755f","extension":"jpg"},"creators":{"available":41,"collectionURI":"http://gateway.marvel.com/v1/public/series/1583/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","name":"Toinay","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/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"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/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":39,"collectionURI":"http://gateway.marvel.com/v1/public/series/1583/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009149","name":"Abyss"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","name":"Abyss + (Age of Apocalypse)"},{"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/1009163","name":"Aurora"},{"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/1009223","name":"Captain + Britain"},{"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/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009416","name":"Magma + (Amara Aquilla)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"}],"returned":20},"stories":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/series/1583/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A + Beginning","type":"interiorStory"},{"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/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/37493","name":"[opening]","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37494","name":"Magneto + and Rogue","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37495","name":"X-Man","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37496","name":"Cyclops","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37497","name":"Havok","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37498","name":"Mr. + Sinister","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37499","name":"Storm","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37500","name":"Quicksilver","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37501","name":"Northstar + and Aurora","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37502","name":"Beast","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37503","name":"The + Four Horsemen","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37504","name":"X-Calibre","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37505","name":"The + Human High Council","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37506","name":"Weapon + X and Jean Grey","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37507","name":"Gambit + and the Externals","type":""}],"returned":20},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1583/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1583/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":1684,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","urls":[{"type":"detail","url":"http://marvel.com/comics/series/1684/x-men_the_complete_age_of_apocalypse_epic_book_3_2006?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2006,"endYear":2006,"rating":"RATED + T+","type":"collection","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/40/4bc5f08a460f6","extension":"jpg"},"creators":{"available":44,"collectionURI":"http://gateway.marvel.com/v1/public/series/1684/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato + Arlem","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/series/1684/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","name":"Banshee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"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/1010964","name":"Quicksilver + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010967","name":"Rogue + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010969","name":"Sabretooth + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010979","name":"Storm + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010981","name":"Sunfire + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009709","name":"Weapon + X"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010994","name":"Wild + Child (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":18},"stories":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/series/1684/stories","items":[{"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/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/37631","name":"Parents + of the Atom","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37632","name":"X-Facts: + Where have all the Heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37637","name":"Once + More With Feeling","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37638","name":"X-Facts: + The Dream is Over","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37640","name":"Sacrificial + Lambs","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37641","name":"X-Facts: + Reality Checked","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37643","name":"In + Excess","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37644","name":"X-Facts: + Where have all the heroes gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37645","name":"Holocaust","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37647","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38452","name":"Interior + #38452","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38453","name":"The + Common Right of Toads and Men","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38454","name":"X-Facts: + Where Have All The Heroes Gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38616","name":"Last + Stand","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38617","name":"Human + High Council File A: Membership Roster","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38618","name":"Human + High Council File B: Tactical Map","type":""}],"returned":20},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1684/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1684/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null},{"id":1685,"title":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","urls":[{"type":"detail","url":"http://marvel.com/comics/series/1685/x-men_the_complete_age_of_apocalypse_epic_book_4_2006?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2006,"endYear":2006,"rating":"RATED + T+","type":"collection","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/c0/4bc5be45d23d0","extension":"jpg"},"creators":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/series/1685/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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5948","name":"Mike + Dringenberg","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciler"},{"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/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","name":"Mark + Buckingham","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"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/277","name":"Terry + Dodson","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/308","name":"Gary + Frank","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","name":"Kelly + Corvese","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2099","name":"Suzanne + Gaffney","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"}],"returned":20},"characters":{"available":51,"collectionURI":"http://gateway.marvel.com/v1/public/series/1685/characters","items":[{"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/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/1009205","name":"Boomer"},{"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/1009223","name":"Captain + Britain"},{"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/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009277","name":"Domino"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009292","name":"Emplate"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009309","name":"Forge"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"}],"returned":20},"stories":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/series/1685/stories","items":[{"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/32828","name":"The + Maze","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32829","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37634","name":"On + Concencrated Ground","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37635","name":"X-Facts: + Final Reflections - It''s the begining of the end for the universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38456","name":"Into + the Maelstrom!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38457","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38621","name":"Dying + Breath","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38622","name":"Human + Data File","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38747","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38823","name":"On + Fire","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42929","name":"X-Facts: + Final Reflections","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42944","name":"Reckonings","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42945","name":"X-Facts: + Final Reflections - It''s the Begining of the End of the Universe","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66002","name":"X-MEN: + THE COMPLETE AGE OF APOCALYPSE EPIC BOOK 4 0 cover","type":"cover"}],"returned":18},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1685/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/1685/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_event_s_stories_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_event_s_stories_by_ID.yml new file mode 100644 index 0000000..7308804 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_event_s_stories_by_ID.yml @@ -0,0 +1,278 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 275d9add7db70eaa2c68764c7990b51ea28f3825 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:49:20 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"275d9add7db70eaa2c68764c7990b51ea28f3825","data":{"offset":0,"limit":20,"total":197,"count":20,"results":[{"id":6850,"title":"X-Men + Chronicles 1-2; Tales from the AOA: By the Light","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/6850","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/stories/6850/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2879","name":"Adam + Kubert","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/175","name":"Andy + Kubert","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1222","name":"Joe + Madureira","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/676","name":"Warren + Ellis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1221","name":"John + Francis Moore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13152","name":"Joe + Quesada","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"}],"returned":13},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/6850/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/6850/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1452","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (2005)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/6850/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/6850/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1780","name":"X-Men: + The Complete Age of Apocalypse Epic Book 1 (Trade Paperback)"}},{"id":7272,"title":"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","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/7272","type":"cover","modified":"2013-07-10T12:20:47-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7272/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13196","name":"John + Romita Jr.","role":"penciller (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7272/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7272/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7272/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7272/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}},{"id":7273,"title":"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","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/7273","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7273/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7273/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7273/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7273/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7273/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}},{"id":24492,"title":"Interior + #24492","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/24492","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24492/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/570","name":"Klaus + Janson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13196","name":"John + Romita Jr.","role":"penciller (cover)"}],"returned":3},"characters":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24492/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009415","name":"Magik + (Illyana Rasputin)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009554","name":"Sabretooth"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009715","name":"Wild + Child"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":14},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24492/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","name":"X-Men: + Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24492/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24492/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"}},{"id":24493,"title":"Endings","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/24493","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24493/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"}],"returned":8},"characters":{"available":26,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24493/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/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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009508","name":"Kitty + Pryde"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009399","name":"Legion"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009415","name":"Magik + (Illyana Rasputin)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009504","name":"Professor + X"}],"returned":20},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24493/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","name":"X-Men: + Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24493/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24493/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"}},{"id":24495,"title":"Racing the Night","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/24495","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24495/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","name":"Jim + Calafiore","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/277","name":"Terry + Dodson","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/308","name":"Gary + Frank","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4027","name":"Ben + Herrera","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/339","name":"Bryan + Hitch","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2321","name":"Jeff + Matsuda","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9137","name":"Michael + Mckone","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/559","name":"Paul + Pelletier","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4102","name":"Bob + Harris","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13152","name":"Joe + Quesada","role":"writer"}],"returned":15},"characters":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24495/characters","items":[{"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/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/1009205","name":"Boomer"},{"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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009277","name":"Domino"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009292","name":"Emplate"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009295","name":"Exodus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009309","name":"Forge"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009357","name":"Husk"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"}],"returned":20},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24495/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2102","name":"X-Men: + Prime (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24495/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12371","name":"X-Men: + Prime (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24495/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12371","name":"X-Men: + Prime (1995) #1"}},{"id":26280,"title":"X-Men: Alpha (1994) #1","description":"The + Age of Apocalypse starts here! Witness the birth of a whole new era for the + X-Men. ALPHA kicks off Astonishing and Amazing X-Men and sets the stage for + everything that is to come!","resourceURI":"http://gateway.marvel.com/v1/public/stories/26280","type":"cover","modified":"2017-08-21T13:49:42-0400","thumbnail":null,"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26280/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1222","name":"Joe + Madureira","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"}],"returned":4},"characters":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26280/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","name":"Apocalypse"},{"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/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011386","name":"Karma"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009530","name":"Mikhail + Rasputin"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009410","name":"Moira + MacTaggert"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"}],"returned":20},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26280/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26280/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26280/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"}},{"id":26281,"title":"A Beginning","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","type":"story","modified":"2017-07-10T11:26:47-0400","thumbnail":null,"creators":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26281/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","name":"Comicraft","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/350","name":"Richard + Starkings","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","name":"Steve + Buccellato","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/356","name":"Roger + Cruz","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/374","name":"Steve + Epting","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3637","name":"Scott + Lobdell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/119","name":"Mark + Waid","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1914","name":"Dan + Panosian","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/427","name":"Tim + Townsend","role":"inker"}],"returned":12},"characters":{"available":24,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26281/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/1009159","name":"Archangel"},{"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/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009313","name":"Gambit"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009349","name":"Holocaust + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009447","name":"Mister + Sinister"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009456","name":"Morph"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009554","name":"Sabretooth"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"}],"returned":20},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26281/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26281/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26281/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"}},{"id":32818,"title":"Cover #32818","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32818","type":"cover","modified":"2018-04-23T16:30:56-0400","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32818/creators","items":[],"returned":0},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32818/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010936","name":"Jubilee + (Age of Apocalypse)"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32818/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32818/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16077","name":"Gambit + and the X-Ternals (1995) #1"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32818/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16077","name":"Gambit + and the X-Ternals (1995) #1"}},{"id":32819,"title":"Some of Us Looking to + the Stars","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32819","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32819/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","name":"Kevin + Conrad","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":5},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32819/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":2},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32819/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":3},"comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32819/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"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/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32819/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16077","name":"Gambit + and the X-Ternals (1995) #1"}},{"id":32820,"title":"X-Facts: The Dream is + Over","description":"Text piece about the Age of Apocolypse","resourceURI":"http://gateway.marvel.com/v1/public/stories/32820","type":"text + article","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32820/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32820/characters","items":[],"returned":0},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32820/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":3},"comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32820/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"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/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":3},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32820/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16077","name":"Gambit + and the X-Ternals (1995) #1"}},{"id":32821,"title":"Cover #32821","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32821","type":"cover","modified":"2018-04-23T16:29:17-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32821/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/559","name":"Paul + Pelletier","role":"penciler"}],"returned":2},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32821/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010936","name":"Jubilee + (Age of Apocalypse)"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32821/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32821/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16078","name":"Gambit + and the X-Ternals (1995) #2"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32821/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16078","name":"Gambit + and the X-Ternals (1995) #2"}},{"id":32822,"title":"Where No External Has + Gone Before","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32822","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32822/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2974","name":"Digital + Chameleon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/354","name":"Tony + Daniel","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":7},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32822/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32822/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32822/comics","items":[{"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/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32822/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16078","name":"Gambit + and the X-Ternals (1995) #2"}},{"id":32823,"title":"X-Facts: Reality Checked","description":"Text + piece about the Age of Apocolypse","resourceURI":"http://gateway.marvel.com/v1/public/stories/32823","type":"text + article","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32823/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32823/characters","items":[],"returned":0},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32823/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32823/comics","items":[{"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/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32823/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16078","name":"Gambit + and the X-Ternals (1995) #2"}},{"id":32824,"title":"Cover #32824","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32824","type":"cover","modified":"2018-04-23T16:26:20-0400","thumbnail":null,"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32824/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"}],"returned":3},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32824/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32824/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32824/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32824/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"}},{"id":32825,"title":"To the Limits of Infinity","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32825","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32825/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4101","name":"Electric + Crayon","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2086","name":"Joe + Rosas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5073","name":"Mike + Thomas","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3578","name":"Matt + Webb","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":11},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32825/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32825/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32825/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32825/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"}},{"id":32826,"title":"X-Facts: Where Have All + The Heroes Gone?","description":"Text piece about X-Universe","resourceURI":"http://gateway.marvel.com/v1/public/stories/32826","type":"text + article","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32826/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32826/characters","items":[],"returned":0},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32826/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32826/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32826/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"}},{"id":32827,"title":"Cover #32827","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32827","type":"cover","modified":"2018-04-23T16:25:04-0400","thumbnail":null,"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32827/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"}],"returned":3},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32827/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010936","name":"Jubilee + (Age of Apocalypse)"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32827/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32827/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32827/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"}},{"id":32828,"title":"The Maze","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/32828","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32828/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1224","name":"Hi-Fi + Design","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13568","name":"Marie + Javins","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11757","name":"Salvador + Larroca","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6001","name":"Fabian + Nicieza","role":"writer"}],"returned":7},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32828/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009724","name":"X-Force"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32828/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32828/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32828/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"}},{"id":32829,"title":"X-Facts: Final Reflections","description":"Text + piece about the Age of Apocolypse","resourceURI":"http://gateway.marvel.com/v1/public/stories/32829","type":"","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32829/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/375","name":"Bob + Harras","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32829/characters","items":[],"returned":0},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32829/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32829/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/32829/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16080","name":"Gambit + and the X-Ternals (1995) #4"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_events_s_characters_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_events_s_characters_by_ID.yml new file mode 100644 index 0000000..0a88620 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_events_s_characters_by_ID.yml @@ -0,0 +1,1142 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - f98ae1dd4a4258aee204e57fe42065d947838867 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:49:21 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"f98ae1dd4a4258aee204e57fe42065d947838867","data":{"offset":0,"limit":20,"total":91,"count":20,"results":[{"id":1009149,"name":"Abyss","description":"","modified":"2014-04-29T14:10:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/30/535feab462a64","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 (1995) #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 (1995)"},{"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/characters/85/abyss?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Abyss_(alien)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009149/abyss?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010903,"name":"Abyss + (Age of Apocalypse)","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/80/4c00358ec7548","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010903","comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18099","name":"Weapon + X (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":3},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon + X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"},{"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":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26280","name":"X-Men: + Alpha (1994) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38448","name":"X-Facts","type":""}],"returned":2},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010903/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/85/abyss?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Abyss_(Age_of_Apocalypse)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010903/abyss_age_of_apocalypse?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009153,"name":"Angel + (Warren Worthington III)","description":"","modified":"2012-05-30T14:06:57-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/1009153","comics":{"available":115,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009153/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60507","name":"All-New + Wolverine (2015) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21197","name":"Angel: + Revelations (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21345","name":"Angel: + Revelations (2008) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21525","name":"Angel: + Revelations (2008) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21725","name":"Angel: + Revelations (2008) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21953","name":"Angel: + Revelations (2008) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65055","name":"Astonishing + X-Men (2017) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65405","name":"Astonishing + X-Men (2017) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66299","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8055","name":"Champions + (1975) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8066","name":"Champions + (1975) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8067","name":"Champions + (1975) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8068","name":"Champions + (1975) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8069","name":"Champions + (1975) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8070","name":"Champions + (1975) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8056","name":"Champions + (1975) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8058","name":"Champions + (1975) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8059","name":"Champions + (1975) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8061","name":"Champions + (1975) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8063","name":"Champions + (1975) #17"}],"returned":20},"series":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009153/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4811","name":"Angel: + Revelations (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24018","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2001","name":"Champions + (1975 - 1978)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3743","name":"Defenders + (1972 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22406","name":"DEFENDERS + EPIC COLLECTION: ASHES, ASHES… TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30527","name":"Empyre: + X-Men (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic + Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2435","name":"Fantastic + Four Omnibus Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/341","name":"FANTASTIC + FOUR VISIONARIES: JOHN BYRNE VOL. 2 TPB (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21726","name":"Gambit + Annual (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13853","name":"Gambit: + From the Marvel Vault (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/973","name":"Generation + M (2005 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4819","name":"Genext + (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23096","name":"Iceman + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13344","name":"Iceman + and Angel (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2983","name":"Incredible + Hulk Annual (1976 - 1994)"}],"returned":20},"stories":{"available":121,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009153/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4058","name":"Cover + #4058","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5489","name":"4 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5491","name":"5 + of 5 - 5XLS - Generation M","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5992","name":"1 + of 1 - The Peach Boy","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12765","name":"Fantastic + Four (1961) #250","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12766","name":"X-Factor","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15346","name":"Fantastic + Four Annual (1963) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15347","name":"Bedlam + at the Baxter Builing","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15379","name":"Uncanny + X-Men (1963) #100","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15602","name":"Uncanny + X-Men (1963) #61","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20434","name":"Cover + #20434","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20436","name":"Cover + #20436","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20440","name":"From + Beyond the Stars...The Stranger Strikes!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20442","name":"Cover + #20442","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20446","name":"Cover + #20446","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20450","name":"Cover + #20450","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20456","name":"Cover + #20456","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20458","name":"Cover + #20458","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20460","name":"Cover + #20460","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20462","name":"Cover + #20462","type":"cover"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009153/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"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/316","name":"X-Men: + Battle of the Atom"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/306","name":"X-Men: + Schism"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/characters/1/angel?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Angel_(Warren_Worthington_III)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009153/angel_warren_worthington_iii?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009156,"name":"Apocalypse","description":"","modified":"2014-05-28T12:41:41-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/e0/526166076a1d0","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009156","comics":{"available":127,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009156/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72959","name":"Age + of X-Man: Apocalypse & the X-Tracts (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72963","name":"Age + of X-Man: Apocalypse & the X-Tracts (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29205","name":"Avengers + (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29206","name":"Avengers + (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34142","name":"Avengers + (2010) #3 (ROMITA JR. VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7459","name":"Cable + (1993) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24171","name":"Cable + (2008) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24172","name":"Cable + (2008) #14 (MW, 50/50 Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24631","name":"Cable + (2008) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24632","name":"Cable + (2008) #15 (MW, 50/50 Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7410","name":"Cable + (1993) #35"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7444","name":"Cable + (1993) #66"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7454","name":"Cable + (1993) #75"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94066","name":"Dark + Ages (2021) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39445","name":"Essential + X-Factor Vol. 2 (All-New Edition) (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76729","name":"Excalibur + (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76731","name":"Excalibur + (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76732","name":"Excalibur + (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/76734","name":"Excalibur + (2019) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78389","name":"Excalibur + (2019) #8"}],"returned":20},"series":{"available":59,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009156/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/26335","name":"Age + of X-Man: Apocalypse & the X-Tracts (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31088","name":"Dark + Ages (2021 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14400","name":"Essential + X-Factor Vol. 2 (All-New Edition) (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27547","name":"Excalibur + (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20418","name":"Extraordinary + X-Men Vol. 3: Kingdoms Fall (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22173","name":"Further + Adventures of Cyclops & Phoenix (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/37410","name":"Kang + the Conqueror: Only Myself Left to Conquer Infinity Comic (2023 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34445","name":"Life + of Wolverine Infinity Comic (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8138","name":"Mystic + Comics 70th Anniversary Special (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31809","name":"New + Eternals: Apocalypse Now (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2057","name":"Onslaught: + Marvel Universe (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22174","name":"Rise + of Apocalypse (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17927","name":"Stryfe''s + Strike File (1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9976","name":"Uncanny + X-Force (2010 - 2012)"}],"returned":20},"stories":{"available":127,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009156/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/477","name":"Cover + #477","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/664","name":"X-MEN + (2004) #183","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/666","name":"X-MEN + (2004) #184","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/668","name":"X-MEN + (2004) #185","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3425","name":"Cover + #3425","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3588","name":"Cover + #3588","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3592","name":"Cover + #3592","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3866","name":"Cover + #3866","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4153","name":"Cover + #4153","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4223","name":"Cover + #4223","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4430","name":"Cover + #4430","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4513","name":"Cover + #4513","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4612","name":"Cover + #4612","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4614","name":"Cover + #4614","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5919","name":"Cover + #5919","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19075","name":"...Meet + War!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22203","name":"Whose + Death Is It, Anyway?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22207","name":"Die, + Mutants, Die!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22210","name":"The + Horsemen of Apocalypse","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22221","name":"You + Say You Want Some Evolution?","type":"interiorStory"}],"returned":20},"events":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009156/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":6},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009156/apocalypse?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Apocalypse_(En_Sabah_Nur)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009156/apocalypse?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009158,"name":"Arcade","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/a0/4c0042091ab69","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009158","comics":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009158/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/17712","name":"Agent + X (2002) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20586","name":"Classic + X-Men (1986) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61483","name":"Elektra + (2017) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61484","name":"Elektra + (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61485","name":"Elektra + (2017) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62143","name":"Elektra: + Always Bet On Red (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8591","name":"Excalibur + (1988) #125"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62154","name":"GWENPOOL, + THE UNBELIEVABLE VOL. 3: TOTALLY IN CONTINUITY TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1587","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17693","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 6 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103829","name":"Murderworld: + Avengers (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64576","name":"Spider-Man/Deadpool + (2016) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64948","name":"Spider-Man/Deadpool + (2016) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/70714","name":"The + Amazing Spider-Man (2018) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/70716","name":"The + Amazing Spider-Man (2018) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60680","name":"The + Unbelievable Gwenpool (2016) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13686","name":"Uncanny + X-Men (1963) #145"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13687","name":"Uncanny + X-Men (1963) #146"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13688","name":"Uncanny + X-Men (1963) #147"}],"returned":20},"series":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009158/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/459","name":"Agent + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3751","name":"Classic + X-Men (1986 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22561","name":"Elektra + (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22770","name":"Elektra: + Always Bet On Red (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22781","name":"GWENPOOL, + THE UNBELIEVABLE VOL. 3: TOTALLY IN CONTINUITY TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3460","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 6 HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35694","name":"Murderworld: + Avengers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19679","name":"Spider-Man/Deadpool + (2016 - 2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24396","name":"The + Amazing Spider-Man (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21490","name":"The + Unbelievable Gwenpool (2016 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1723","name":"Uncanny + X-Men Omnibus Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men + (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1774","name":"X-Men: + Mutant Genesis (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2102","name":"X-Men: + Prime (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":20},"stories":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009158/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15428","name":"UNCANNY + X-MEN (1963) #122","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15429","name":"Cry + For The Children!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15431","name":"UNCANNY + X-MEN (1963) #123","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15433","name":"UNCANNY + X-MEN (1963) #124","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22463","name":"Tying + the Knot","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/27794","name":"Kidnapped!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27795","name":"X-Men + vs. Murderworld (Guess Who Wins?)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27796","name":"Murderworld!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/27798","name":"Rogue + Storm!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29116","name":"A + Villains Gallery","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37531","name":"AGENT + X (2002) #5","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/38264","name":"Arcade--Shatterstar--Murderworld","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43937","name":"Play + With Me","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43939","name":"Back + Cover","type":"backcovers"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83523","name":"Age + of X: Alpha (2010) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83524","name":"Interior + #83524 ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/131829","name":"cover + from Gwenpool (2016) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/133395","name":"cover + from Elektra (2016) #3","type":"cover"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009158/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/characters/178/arcade?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Arcade?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009158/arcade?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009159,"name":"Archangel","description":"","modified":"2013-10-18T12:48:24-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/03/526165ed93180","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009159","comics":{"available":561,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/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/12555","name":"All-Winners + Comics (1941) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12651","name":"Alpha + Flight (1983) #111"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51178","name":"Archangel + (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63833","name":"Astonishing + X-Men (2017) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64883","name":"Astonishing + X-Men (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65263","name":"Astonishing + X-Men (2017) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66265","name":"Astonishing + X-Men (2017) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66481","name":"Astonishing + X-Men (2017) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67715","name":"Astonishing + X-Men (2017) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40803","name":"Astonishing + X-Men (2004) #51"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71373","name":"Astonishing + X-Men Annual (2018) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66299","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17509","name":"Avengers + (1998) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17546","name":"Avengers + (1998) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4461","name":"Avengers + Assemble Vol. 3 (Hardcover)"},{"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/23971","name":"Cable + (2008) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23972","name":"Cable + (2008) #13 (MW, 50/50 Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24171","name":"Cable + (2008) #14"}],"returned":20},"series":{"available":138,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/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/2114","name":"All-Winners + Comics (1941 - 1947)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19239","name":"Archangel + (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26006","name":"Astonishing + X-Men Annual (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24018","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers + Vol. 1: World Trust (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3626","name":"Bishop + (1994 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8","name":"Call, + the Vol. 2: The Precinct (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain + America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/690","name":"Captain + Marvel (2000 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/175","name":"Captain + Marvel Vol. 1: Nothing to Lose (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/105","name":"Captain + Marvel Vol. I (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2001","name":"Champions + (1975 - 1978)"}],"returned":20},"stories":{"available":622,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1745","name":"UNCANNY + X-MEN (1963) #433","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1776","name":"UNCANNY + X-MEN (1963) #434","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2071","name":"UNCANNY + X-MEN (1963) #438","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2293","name":"UNCANNY + X-MEN (1963) #432","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3261","name":"2 + of 2 - Save the Life of My Child","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6222","name":"Cover + #6222","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8823","name":"[The + Six Big Men]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9053","name":"Cover + #9053","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9059","name":"The + Case of the Mad Gargoyle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9719","name":"The + House of Horror","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9724","name":"Killer''s + Last Stand","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9729","name":"The + Case of the Beggar Prince","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9735","name":"Charity + Bazaar Murders","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9741","name":"The + Devil''s Imposter","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9747","name":"Tell-Tale + Cigarette","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9753","name":"The + Parrot Murder Secret","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9758","name":"Mystery + of Horror House","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9763","name":"Adventure + of the Generous Fence","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9770","name":"Shadow + of the Noose","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/9776","name":"The + Two-Faced Corpse","type":"interiorStory"}],"returned":20},"events":{"available":19,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009159/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/334","name":"Inhumans + Vs. X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":19},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009159/archangel?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Angel_(Warren_Worthington_III)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009159/archangel?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009163,"name":"Aurora","description":"","modified":"2011-05-10T15:56:51-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/10/4c004203f1072","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009163","comics":{"available":83,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009163/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/38570","name":"Alpha + Flight (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12637","name":"Alpha + Flight (1983) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39819","name":"Alpha + Flight (2011) #1 (Eaglesham Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38569","name":"Alpha + Flight (2011) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12679","name":"Alpha + Flight (1983) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38565","name":"Alpha + Flight (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12690","name":"Alpha + Flight (1983) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12701","name":"Alpha + Flight (1983) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12734","name":"Alpha + Flight (1983) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12745","name":"Alpha + Flight (1983) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12638","name":"Alpha + Flight (1983) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12649","name":"Alpha + Flight (1983) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12660","name":"Alpha + Flight (1983) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1647","name":"Alpha + Flight (2004) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12671","name":"Alpha + Flight (1983) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12673","name":"Alpha + Flight (1983) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12674","name":"Alpha + Flight (1983) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12675","name":"Alpha + Flight (1983) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12676","name":"Alpha + Flight (1983) #17"}],"returned":20},"series":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009163/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/719","name":"Alpha + Flight (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13907","name":"Alpha + Flight (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13260","name":"Chaos + War: Alpha Flight (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34029","name":"Marauders + (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1723","name":"Uncanny + X-Men Omnibus Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/163","name":"WEAPON + X VOL. 1: THE DRAFT TPB (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/138","name":"Weapon + X Vol. I (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3653","name":"Weapon + X: The Draft – Wild Child (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28053","name":"X-Factor + (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":18},"stories":{"available":95,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009163/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1131","name":"WEAPON + X (2002) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1786","name":"WEAPON + X (2002) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2943","name":"Alpha + Flight (2004) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2944","name":"4 + of 4 - Days of Future Present Past Participle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15427","name":"Shoot-Out + at the Stampede!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21096","name":"Alpha + Flight (1983) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21097","name":"Tundra!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21099","name":"Blood + Battle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21124","name":"Alpha + Flight #12","type":"ad"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21126","name":"Bare + Bones","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21128","name":"Bare + Bones Part II","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21132","name":"Speaking + of Experience","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21145","name":"And + One Shall Surely Die !","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21146","name":"And + One Shall Surely Die","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21165","name":"Faith!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21168","name":"The + Perfect World","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21169","name":"No + Future Part 2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21170","name":"Ordeal!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21172","name":"Nightmare","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21174","name":"The + Hollow Man","type":"interiorStory"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009163/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/characters/221/aurora?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Aurora?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009163/aurora?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009168,"name":"Banshee","description":"","modified":"2013-11-01T16:27:08-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/03/52740e4619f54","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009168","comics":{"available":181,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009168/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12676","name":"Alpha + Flight (1983) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12754","name":"Alpha + Flight (1983) #88"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17735","name":"Astonishing + X-Men (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67717","name":"Astonishing + X-Men (2017) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7553","name":"Captain + America (1968) #172"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60569","name":"CAPTAIN + AMERICA AND THE FALCON: SECRET EMPIRE TPB [NEW PRINTING] (Trade Paperback)"},{"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/20566","name":"Classic + X-Men (1986) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20567","name":"Classic + X-Men (1986) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20570","name":"Classic + X-Men (1986) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20572","name":"Classic + X-Men (1986) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20580","name":"Classic + X-Men (1986) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20590","name":"Classic + X-Men (1986) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20592","name":"Classic + X-Men (1986) #36"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8556","name":"Earth + X (1999) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4241","name":"EARTH + X TPB [NEW PRINTING] (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8580","name":"Excalibur + (1988) #115"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22807","name":"Generation + X (1994) #75"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3463","name":"House + of M: Uncanny X-Men (Trade Paperback)"}],"returned":20},"series":{"available":53,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009168/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","name":"Astonishing + X-Men (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22387","name":"CAPTAIN + AMERICA AND THE FALCON: SECRET EMPIRE TPB [NEW PRINTING] (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13588","name":"Chaos + War: X-Men (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3751","name":"Classic + X-Men (1986 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6256","name":"Generation + X (1994 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33959","name":"Legion + of X (2022 - 2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27555","name":"Marauders + (2019 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3460","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 6 HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14485","name":"Marvel + Masterworks: The X-Men Vol. 3 DM Variant TPB (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14486","name":"Marvel + Masterworks: The X-Men Vol. 3 TPB (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1364","name":"Marvel + Masterworks: The X-Men Vol. 4 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1689","name":"MARVEL + MASTERWORKS: THE X-MEN VOL. 6 TPB (2006)"}],"returned":20},"stories":{"available":205,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009168/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/752","name":"Uncanny + X-Men (1963) #463","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/755","name":"4 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15379","name":"Uncanny + X-Men (1963) #100","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15380","name":"Greater + Love Hath No X-Man...","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15382","name":"Like + a Phoenix, From the Ashes!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15384","name":"Who + Will Stop the Juggernaut?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15385","name":"Uncanny + X-Men (1963) #103","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15386","name":"The + Fall of the Tower","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15388","name":"The + Gentleman''s Name is Magneto","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15390","name":"Phoenix + Unleashed!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15392","name":"Dark + Shroud of the Past !","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15393","name":"Uncanny + X-Men (1963) #107","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15394","name":"Where + No X-Man Has Gone Before!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15395","name":"Uncanny + X-Men (1963) #108","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15396","name":"Armageddon + Now !","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15397","name":"Uncanny + X-Men (1963) #109","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15398","name":"Home + are the Heroes!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15401","name":"Uncanny + X-Men (1963) #110","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15402","name":"The + \"X\"-Sanction!","type":"interiorStory"}],"returned":20},"events":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009168/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/279","name":"X-Men: + Second Coming"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":10},"urls":[{"type":"detail","url":"http://marvel.com/characters/232/banshee?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Banshee?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009168/banshee?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009596,"name":"Banshee + (Theresa Rourke)","description":"The daughter of former X-Men member Sean + Cassidy, a.k.a. Banshee, and Maeve Rourke, Theresa Rourke was raised by her + first cousin once removed, mutant terrorist Thomas Cassidy, a.k.a. Black Tom.","modified":"2011-03-23T17:37:27-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/c0/4ce5a1a50e56b","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009596","comics":{"available":155,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009596/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7426","name":"Cable + (1993) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7448","name":"Cable + (1993) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7459","name":"Cable + (1993) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7387","name":"Cable + (1993) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7388","name":"Cable + (1993) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7452","name":"Cable + (1993) #73"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20731","name":"CLANDESTINE + CLASSIC PREMIERE HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8473","name":"Deadpool + (1997) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8484","name":"Deadpool + (1997) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8495","name":"Deadpool + (1997) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8506","name":"Deadpool + (1997) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8465","name":"Deadpool + (1997) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8466","name":"Deadpool + (1997) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8476","name":"Deadpool + (1997) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8493","name":"Deadpool + (1997) #38"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8513","name":"Deadpool + (1997) #56"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8527","name":"Deadpool + (1997) #69"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24957","name":"Deadpool + Vol. 1: Secret Invasion (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10123","name":"Marvel + Comics Presents (1988) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17693","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 6 HC (Hardcover)"}],"returned":20},"series":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009596/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3874","name":"CLANDESTINE + CLASSIC PREMIERE HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7713","name":"Deadpool + Vol. 1: Secret Invasion (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel + Comics Presents (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3460","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 6 HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1807","name":"New + X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2281","name":"New + X-Men (2001 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/56","name":"New + X-Men Vol. III: New Worlds (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2059","name":"Paradise + X (2002 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2702","name":"PARADISE + X VOL. 2 TPB [NEW PRINTING] (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What + If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28053","name":"X-Factor + (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1035","name":"X-Factor + (2005 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6689","name":"X-Factor + Annual (1986 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5068","name":"X-FACTOR + VISIONARIES: PETER DAVID VOL. 4 TPB (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1882","name":"X-Factor: + The Longest Night (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"}],"returned":20},"stories":{"available":178,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009596/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4905","name":"X-FACTOR + (2005) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4912","name":"X-FACTOR + (2005) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19864","name":"Kings + of Pain Part 3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19865","name":"Kings + of Pain Part 3: Queens of Sacrifice","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22101","name":"Phalanx + Covenant: Life Signs Part 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22327","name":"Clash + Reunion","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22362","name":"Tough + Love","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23343","name":"Hello + Little Girl... Is Your Father Home?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24194","name":"Fear + & Loathing Part 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24196","name":"Shadows","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24277","name":"Sinsearly + Yours Sincerely Mine...","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24322","name":"Fathers + and Sons Act 2: Illuminated Knights","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24331","name":"CABLE + (1993) #73","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24354","name":"Fathers + and Sons Part 3: Dayspring","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/24531","name":"Deadpool + (1997) #12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24534","name":"Deadpool + (1997) #13","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24554","name":"Deadpool + (1997) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24562","name":"Deadpool + (1997) #22","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24580","name":"Deadpool + (1997) #3","type":"interiorStory"}],"returned":20},"events":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009596/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/279","name":"X-Men: + Second Coming"}],"returned":6},"urls":[{"type":"detail","url":"http://marvel.com/characters/232/banshee?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Siryn?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009596/banshee_theresa_rourke?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009175,"name":"Beast","description":"","modified":"2014-01-13T14:48:32-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/80/511a79a0451a3","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009175","comics":{"available":820,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009175/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43501","name":"A+X + (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43506","name":"A+X + (2012) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44580","name":"All-New + X-Men (2012) #3 (Mcguinness Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12651","name":"Alpha + Flight (1983) #111"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23247","name":"Amazing + Adventures (1970) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23248","name":"Amazing + Adventures (1970) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23249","name":"Amazing + Adventures (1970) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23250","name":"Amazing + Adventures (1970) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23251","name":"Amazing + Adventures (1970) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23252","name":"Amazing + Adventures (1970) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23253","name":"Amazing + Adventures (1970) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48021","name":"Amazing + X-Men (2013) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/660","name":"Astonishing + X-Men (2004) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/723","name":"Astonishing + X-Men (2004) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/531","name":"Astonishing + X-Men (2004) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1808","name":"Astonishing + X-Men (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/843","name":"Astonishing + X-Men (2004) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/927","name":"Astonishing + X-Men (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38","name":"Astonishing + X-Men (2004) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1436","name":"Astonishing + X-Men (2004) #8"}],"returned":20},"series":{"available":218,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009175/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6666","name":"Amazing + Adventures (1970 - 1976)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26006","name":"Astonishing + X-Men Annual (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7576","name":"Astonishing + X-Men by Joss Whedon & John Cassaday (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1464","name":"Astonishing + X-Men Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1298","name":"Astonishing + X-Men Vol. 1: Gifted (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1422","name":"Astonishing + X-Men Vol. 2: Dangerous (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1485","name":"Astonishing + X-Men Vol. 3: Torn (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5055","name":"Astonishing + X-Men Vol. 4: Unstoppable (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5998","name":"Astonishing + X-Men: Ghost Boxes (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9781","name":"Astonishing + X-Men: Xenogenesis (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22547","name":"Avengers + (2016 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"}],"returned":20},"stories":{"available":913,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009175/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/608","name":"Cover + #608","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/610","name":"Cover + #610","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/612","name":"Cover + #612","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/628","name":"X-MEN + (2004) #165","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/666","name":"X-MEN + (2004) #184","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/670","name":"X-MEN + (2004) #186","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/674","name":"X-MEN + (2004) #188","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/743","name":"5 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/765","name":"1 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/766","name":"Uncanny + X-Men (1963) #470","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/767","name":"2 + of 3 - Wand''ring Star","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1046","name":"Cover + #1046","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1490","name":"Cover + #1490","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1596","name":"New + Mutants (2003) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1901","name":"New + Mutants (2003) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1902","name":"Interior + #1902","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/2448","name":"Cover + #2448","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2478","name":"CABLE + & DEADPOOL (2004) #8","type":"cover"}],"returned":20},"events":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009175/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/320","name":"Axis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/245","name":"Enemy + of the State"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/characters/3/beast?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Beast_(Henry_McCoy)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009175/beast?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009182,"name":"Bishop","description":"","modified":"2013-10-23T12:43:10-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/70/52602f4b42d98","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009182","comics":{"available":306,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009182/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/63833","name":"Astonishing + X-Men (2017) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64205","name":"Astonishing + X-Men (2017) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64883","name":"Astonishing + X-Men (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65055","name":"Astonishing + X-Men (2017) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65263","name":"Astonishing + X-Men (2017) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65405","name":"Astonishing + X-Men (2017) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66265","name":"Astonishing + X-Men (2017) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66481","name":"Astonishing + X-Men (2017) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67715","name":"Astonishing + X-Men (2017) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66299","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5844","name":"Avengers + Assemble Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17851","name":"Bishop + (1994) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20609","name":"Bishop: + The Last X-Man (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20618","name":"Bishop: + The Last X-Man (1999) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20619","name":"Bishop: + The Last X-Man (1999) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20620","name":"Bishop: + The Last X-Man (1999) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20621","name":"Bishop: + The Last X-Man (1999) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20622","name":"Bishop: + The Last X-Man (1999) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20623","name":"Bishop: + The Last X-Man (1999) #8"}],"returned":20},"series":{"available":71,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009182/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/23262","name":"Astonishing + X-Men (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24018","name":"Astonishing + X-Men by Charles Soule Vol. 1: Life of X (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3626","name":"Bishop + (1994 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3753","name":"Bishop: + The Last X-Man (1999 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/784","name":"Black + Panther (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22386","name":"Cable + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4059","name":"Cable + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25722","name":"Cable: + The Last Hope Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10105","name":"Civil + War: X-Men (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1965","name":"Civil + War: X-Men (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1110","name":"Civil + War: X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3874","name":"CLANDESTINE + CLASSIC PREMIERE HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36686","name":"Crossgen + Tales (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/733","name":"District + X (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"}],"returned":20},"stories":{"available":386,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009182/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/477","name":"Cover + #477","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/737","name":"2 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/738","name":"Uncanny + X-Men (1963) #457","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/739","name":"3 + of 5 - Savage Land","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/740","name":"Uncanny + X-Men (1963) #458","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/741","name":"4 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/742","name":"Uncanny + X-Men (1963) #459","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/743","name":"5 + of 5 - World''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/745","name":"1 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/749","name":"1 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/760","name":"Uncanny + X-Men (1963) #467","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/761","name":"2 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/763","name":"3 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/764","name":"Uncanny + X-Men (1963) #469","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/765","name":"1 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/766","name":"Uncanny + X-Men (1963) #470","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/767","name":"2 + of 3 - Wand''ring Star","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/774","name":"UNCANNY + X-MEN (1963) #474","type":"cover"}],"returned":20},"events":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009182/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":8},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009182/bishop?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Bishop_(Lucas_Bishop)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009182/bishop?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009197,"name":"Blink","description":"","modified":"2011-11-14T15:18:17-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/d0/4ce59eeb38a9a","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009197","comics":{"available":63,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009197/comics","items":[{"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/64886","name":"Cable + (2017) #150"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65060","name":"Cable + (2017) #151"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65269","name":"Cable + (2017) #152"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65450","name":"Cable + (2017) #153"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66188","name":"Cable + (2017) #154"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61122","name":"Cable + Vol. 2: The Newer Mutants (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66769","name":"Exiles + (2018) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66911","name":"Exiles + (2018) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67337","name":"Exiles + (2018) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68356","name":"Exiles + (2018) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68358","name":"Exiles + (2018) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68360","name":"Exiles + (2018) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16315","name":"Exiles + (2001) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68361","name":"Exiles + (2018) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16326","name":"Exiles + (2001) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68362","name":"Exiles + (2018) #8"}],"returned":20},"series":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009197/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22386","name":"Cable + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22480","name":"Cable + Vol. 2: The Newer Mutants (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24155","name":"Exiles + (2018 - 2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/154","name":"Exiles + Vol. 3: Out of Time (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/116","name":"Exiles + Vol. II: A World Apart (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7455","name":"New + Mutants (2009 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25229","name":"New + Mutants by Abnett & Lanning: The Complete Collection Vol. 1 (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/787","name":"Official + Handbook of the Marvel Universe (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24360","name":"True + Believers: Exiles (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1399","name":"Uncanny + X-Men - The New Age Vol. 3: On Ice (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men + (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men + Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3637","name":"X-Men + Unlimited (1993 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2890","name":"X-Men: + Die by the Sword (2007 - 2008)"},{"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)"}],"returned":20},"stories":{"available":67,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009197/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/747","name":"2 + of 2 - Mojo Rising","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1592","name":"1 + of 5 - Enemy of the Stars","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3425","name":"Cover + #3425","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3588","name":"Cover + #3588","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3592","name":"Cover + #3592","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3866","name":"Cover + #3866","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4153","name":"Cover + #4153","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4223","name":"Cover + #4223","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4430","name":"Cover + #4430","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4513","name":"Cover + #4513","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4612","name":"Cover + #4612","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4614","name":"Cover + #4614","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7639","name":"3 + of 5 - Enemy of the Stars","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8107","name":"3 + of 5 - Enemy of the Stars","type":"cover"},{"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/26280","name":"X-Men: + Alpha (1994) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26281","name":"A + Beginning","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28147","name":"The + Phalanx Covenant - Generation Next Part Three: Enter Freely And Of Your Own + Will","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29203","name":"The + Phalanx Covenant Book One Generation Next Part 2: Drop the Leash","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009197/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/characters/303/blink?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blink_(Clarice_Ferguson)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009197/blink?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009199,"name":"Blob","description":"","modified":"2011-02-09T17:31:11-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/10/4c7c648178328","extension":"png"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","comics":{"available":77,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38524","name":"Age + of X: Universe (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7467","name":"Cable + (1993) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66300","name":"Cable + & X-Force: Onslaught Rising (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8261","name":"Daredevil + (1964) #269"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16254","name":"Exiles + (2001) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1094","name":"Exiles + Vol. 3: Out of Time (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3417","name":"Generation + M (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3463","name":"House + of M: Uncanny X-Men (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9180","name":"Incredible + Hulk (1962) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/105507","name":"Love + Unlimited Infinity Comic (2022) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1587","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14796","name":"Peter + Parker, the Spectacular Spider-Man (1976) #91"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43455","name":"Amazing + Spider-Man (1999) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36153","name":"Uncanny + X-Force (2010) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40447","name":"Uncanny + X-Force (2010) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40442","name":"Uncanny + X-Force (2010) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12539","name":"Uncanny + X-Men (1963) #86"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12459","name":"Uncanny + X-Men (1963) #140"}],"returned":20},"series":{"available":32,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/154","name":"Exiles + Vol. 3: Out of Time (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/973","name":"Generation + M (2005 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36514","name":"Love + Unlimited Infinity Comic (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"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/9976","name":"Uncanny + X-Force (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What + If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6688","name":"X-51 + (1999 - 2000)"}],"returned":20},"stories":{"available":80,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/752","name":"Uncanny + X-Men (1963) #463","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/755","name":"4 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5486","name":"3 + of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5487","name":"3 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15470","name":"Rage!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15507","name":"Uncanny + X-Men (1963) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15624","name":"Uncanny + X-Men (1963) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15663","name":"Cover + #15663","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16097","name":"DAREDEVIL + (1964) #269","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18887","name":"Incredible + Hulk (1962) #369","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18888","name":"Silent + Screams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22103","name":"Guido + vs. Blob","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22237","name":"Kiss + Of Death!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22243","name":"For + All The World To See","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22259","name":"Dust + To Dust","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/characters/308/blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009199/blob?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009205,"name":"Boomer","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/1009205","comics":{"available":62,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009205/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71963","name":"Brute + Force (1990) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71964","name":"Brute + Force (1990) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71965","name":"Brute + Force (1990) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71966","name":"Brute + Force (1990) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7395","name":"Cable + (1993) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1672","name":"MARVEL + WEDDINGS TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13835","name":"Uncanny + X-Men (1963) #294"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13836","name":"Uncanny + X-Men (1963) #295"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13837","name":"Uncanny + X-Men (1963) #296"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13845","name":"Uncanny + X-Men (1963) #304"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13867","name":"Uncanny + X-Men (1963) #326"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13869","name":"Uncanny + X-Men (1963) #328"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13872","name":"Uncanny + X-Men (1963) #331"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18339","name":"What + If? (1989) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18349","name":"What + If? (1989) #46"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14217","name":"Wolverine + (1988) #92"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14218","name":"Wolverine + (1988) #93"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12306","name":"X-Factor + (1986) #84"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12307","name":"X-Factor + (1986) #85"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12182","name":"X-Factor + (1986) #106"}],"returned":20},"series":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009205/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/26238","name":"Brute + Force (1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1430","name":"MARVEL + WEDDINGS TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"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/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5068","name":"X-FACTOR + VISIONARIES: PETER DAVID VOL. 4 TPB (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2265","name":"X-Men + (1991 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2102","name":"X-Men: + Prime (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1685","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (2006)"}],"returned":12},"stories":{"available":73,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009205/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22101","name":"Phalanx + Covenant: Life Signs Part 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22102","name":"X-Teams + Unite","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22362","name":"Tough + Love","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22364","name":"Snikts + and Bones","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24210","name":"\"...Our + Regularly Scheduled Program...\"","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/28098","name":"Overture","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28100","name":"Familiar + Refrain","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28102","name":"Crescendo","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28118","name":"Uncanny + X-Men (1963) #304","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28119","name":"...For + What I Have Done","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28166","name":"Nature + Of Evil","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28170","name":"Precipice","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28176","name":"The + Splinter Of Our Discontent","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28954","name":"A + Northern Exposure","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28956","name":"Tavern + in the Town","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29112","name":"I + Had a Dream","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29153","name":"Fingers + on the Trigger","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29155","name":"The + Camel''s Back","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29188","name":"X-Men + (1991) #30","type":"cover"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009205/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/characters/2800/boom_boom?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009205/boomer?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009210,"name":"Brute","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/1009210","comics":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009210/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7502","name":"Captain + America (1968) #121"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12980","name":"Fantastic + Four (1961) #177"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12981","name":"Fantastic + Four (1961) #178"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2089","name":"FANTASTIC + FOUR VISIONARIES: GEORGE PEREZ VOL. 1 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20936","name":"Marvel + Masterworks: Captain America Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20937","name":"MARVEL + MASTERWORKS: CAPTAIN AMERICA VOL. 4 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18177","name":"X-Man + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18188","name":"X-Man + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18199","name":"X-Man + (1995) #3"}],"returned":9},"series":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009210/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1458","name":"FANTASTIC + FOUR VISIONARIES: GEORGE PEREZ VOL. 1 TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4049","name":"Marvel + Masterworks: Captain America Vol. 4 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4050","name":"MARVEL + MASTERWORKS: CAPTAIN AMERICA VOL. 4 HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"}],"returned":6},"stories":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009210/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12580","name":"Fantastic + Four (1961) #177","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12581","name":"Look + Out for the Frightful Four","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12582","name":"Fantastic + Four (1961) #178","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17496","name":"CAPTAIN + AMERICA (1968) #121","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67759","name":"X-Man + (1995) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67770","name":"X-Man + (1995) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67781","name":"X-Man + (1995) #3","type":"cover"}],"returned":7},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009210/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/360/brute?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Brute?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009210/brute?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009214,"name":"Cable","description":"","modified":"2016-03-28T12:36:31-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/90/526165df2b584","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","comics":{"available":443,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009214/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43488","name":"A+X + (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61524","name":"All-New + Guardians of the Galaxy (2017) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50996","name":"Askani''son + (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50997","name":"Askani''son + (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50998","name":"Askani''son + (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50999","name":"Askani''son + (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39772","name":"Avengers: + X-Sanction (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39771","name":"Avengers: + X-Sanction (2011) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39770","name":"Avengers: + X-Sanction (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7373","name":"Cable + (1993) #-1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20897","name":"Cable + (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7374","name":"Cable + (1993) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60557","name":"Cable + (2017) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78653","name":"Cable + (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20896","name":"Cable + (2008) #1 (Cable Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7393","name":"Cable + (1993) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21030","name":"Cable + (2008) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60558","name":"Cable + (2017) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78654","name":"Cable + (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21029","name":"Cable + (2008) #2 (David Finch Variant)"}],"returned":20},"series":{"available":122,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009214/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23058","name":"All-New + Guardians of the Galaxy (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19096","name":"Askani''son + (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14703","name":"Avengers: + X-Sanction (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28038","name":"Cable + (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22386","name":"Cable + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/693","name":"Cable + & Deadpool (2004 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13886","name":"Cable + & Deadpool MGC (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1209","name":"Cable + & Deadpool Vol. 1: If Looks Could Kill (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1338","name":"Cable + & Deadpool Vol. 2: The Burnt Offering (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1488","name":"Cable + & Deadpool Vol. 3: The Human Race (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1578","name":"Cable + & Deadpool Vol. 4: Bosom Buddies (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1676","name":"Cable + & Deadpool Vol. 5: Living Legends (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1960","name":"Cable + & Deadpool Vol. 6: Paved with Good Intentions (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2710","name":"Cable + & Deadpool Vol. 7: Separation Anxiety (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27027","name":"Cable + & X-Force Omnibus (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26627","name":"Cable + & X-Force: Onslaught! (2019)"}],"returned":20},"stories":{"available":611,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009214/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/680","name":"4 + of 6 - Supernovas","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2464","name":"CABLE + & DEADPOOL (2004) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2466","name":"CABLE + & DEADPOOL (2004) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2484","name":"CABLE + & DEADPOOL (2004) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2489","name":"CABLE + & DEADPOOL (2004) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2495","name":"CABLE + & DEADPOOL (2004) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2497","name":"CABLE + & DEADPOOL (2004) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2499","name":"CABLE + & DEADPOOL (2004) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2501","name":"CABLE + & DEADPOOL (2004) #19","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2503","name":"CABLE + & DEADPOOL (2004) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2505","name":"CABLE + & DEADPOOL (2004) #23","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2507","name":"CABLE + & DEADPOOL (2004) #24","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2509","name":"CABLE + & DEADPOOL (2004) #25","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2511","name":"CABLE + & DEADPOOL (2004) #26","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2513","name":"CABLE + & DEADPOOL (2004) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2515","name":"CABLE + & DEADPOOL (2004) #28","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2517","name":"CABLE + & DEADPOOL (2004) #29","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2523","name":"3 + of 3 - The Hero Hunter","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4139","name":"1 + of 1 - Cable & Wolverine","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7649","name":"1 + of ??? - ???","type":"cover"}],"returned":20},"events":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009214/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/279","name":"X-Men: + Second Coming"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":12},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009214/cable?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Cable?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009214/cable?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010912,"name":"Callisto + (Age of Apocalypse)","description":"","modified":"2014-04-29T14:14:52-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/535feb96ee0fb","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010912/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18254","name":"X-Calibre + (1995) #2"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010912/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","name":"X-Calibre + (1995)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010912/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/67820","name":"X-Calibre + 2 cover","type":"cover"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010912/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/1010912/callisto_age_of_apocalypse?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Callisto_(Age_of_Apocalypse)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010912/callisto_age_of_apocalypse?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009219,"name":"Cannonball","description":"","modified":"2013-07-01T12:49:17-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/c0/4c00407fb91b5","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","comics":{"available":292,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009219/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/23645","name":"Astonishing + Tales (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23803","name":"Astonishing + Tales (2009) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23996","name":"Astonishing + Tales (2009) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24201","name":"Astonishing + Tales (2009) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24492","name":"Astonishing + Tales (2009) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50597","name":"Avengers + World (2014) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23057","name":"AVENGERS: + FIRST TO LAST PREMIERE HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23060","name":"AVENGERS: + FIRST TO LAST PREMIERE HC [DM ONLY] (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7393","name":"Cable + (1993) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7415","name":"Cable + (1993) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21388","name":"Cable + (2008) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21389","name":"Cable + (2008) #4 (Djurdjevic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7426","name":"Cable + (1993) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7387","name":"Cable + (1993) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7388","name":"Cable + (1993) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7395","name":"Cable + (1993) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7452","name":"Cable + (1993) #73"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7456","name":"Cable + (1993) #77"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7457","name":"Cable + (1993) #78"}],"returned":20},"series":{"available":80,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009219/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6792","name":"Astonishing + Tales (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18398","name":"Avengers + World (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6473","name":"AVENGERS: + FIRST TO LAST PREMIERE HC (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6476","name":"AVENGERS: + FIRST TO LAST PREMIERE HC [DM ONLY] (2008 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4002","name":"Cable + (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22386","name":"Cable + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4059","name":"Cable + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3874","name":"CLANDESTINE + CLASSIC PREMIERE HC (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5260","name":"Counter + X Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18537","name":"Deadpool + Vs. X-Force (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6674","name":"Last + Avengers Story (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3719","name":"Marvel + Fanfare (1982 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3716","name":"Marvel + Team-Up (1972 - 1985)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3715","name":"Marvel + Two-in-One (1974 - 1983)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1595","name":"Marvel + Visionaries: Chris Claremont (2005)"}],"returned":20},"stories":{"available":323,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009219/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/764","name":"Uncanny + X-Men (1963) #469","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/765","name":"1 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/766","name":"Uncanny + X-Men (1963) #470","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/767","name":"2 + of 3 - Wand''ring Star","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/774","name":"UNCANNY + X-MEN (1963) #474","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1456","name":"Ultimate + X-Men (2001) #62","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1457","name":"2 + of 5 - Escape of Magneto","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1458","name":"Ultimate + X-Men (2001) #63","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1459","name":"3 + of 5 - Magnetic North","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1460","name":"Ultimate + X-Men (2001) #64","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1461","name":"4 + of 5 - Magnetic North","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1472","name":"Ultimate + X-Men (2001) #70","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1473","name":"2 + of 3 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1903","name":"New + Mutants (2003) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1904","name":"Interior + #1904","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6156","name":"Cover + #6156","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19847","name":"Cover + #19847","type":"cover"},{"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/19865","name":"Kings + of Pain Part 3: Queens of Sacrifice","type":"interiorStory"}],"returned":20},"events":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009219/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/271","name":"Secret + Wars II"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/279","name":"X-Men: + Second Coming"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":12},"urls":[{"type":"detail","url":"http://marvel.com/characters/379/cannonball?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Cannonball_(Sam_Guthrie)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009219/cannonball?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009223,"name":"Captain + Britain","description":"","modified":"2016-02-01T14:12:29-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4dbf0e5d57226","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","comics":{"available":178,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009223/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30885","name":"AGE + OF HEROES TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40406","name":"Avengers + (2010) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/492","name":"Avengers + (1998) #81"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4938","name":"Avengers + (1998) #82"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45879","name":"Avengers + Assemble (2012) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75287","name":"Captain + Britain (1976) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75288","name":"Captain + Britain (1976) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75289","name":"Captain + Britain (1976) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79091","name":"Captain + Britain (1976) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75290","name":"Captain + Britain (1976) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75291","name":"Captain + Britain (1976) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79092","name":"Captain + Britain (1976) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67949","name":"Captain + Britain (1976) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79093","name":"Captain + Britain (1976) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79094","name":"Captain + Britain (1976) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79095","name":"Captain + Britain (1976) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75292","name":"Captain + Britain (1976) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79096","name":"Captain + Britain (1976) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/79097","name":"Captain + Britain (1976) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/75293","name":"Captain + Britain (1976) #17"}],"returned":20},"series":{"available":55,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009223/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/10235","name":"AGE + OF HEROES TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15373","name":"Avengers + Assemble (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22960","name":"Captain + Britain (1976 - 1977)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4884","name":"Captain + Britain and MI: 13 (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9045","name":"Deadpool + Team-Up (2009 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10144","name":"Deadpool + Team-Up Vol. 2: Special Relationship (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1806","name":"EARTH + X TPB [NEW PRINTING] (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27547","name":"Excalibur + (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1596","name":"Excalibur + Classic Vol. 1: The Sword Is Drawn (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24022","name":"Excalibur + Epic Collection: The Cross-Time Caper (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13517","name":"Excalibur + Visionaries: Alan Davis Vol. 3 TPB (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12877","name":"Iron + Age (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12392","name":"Iron + Age: Omega (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14764","name":"Journey + Into Mystery (2011 - 2013)"}],"returned":20},"stories":{"available":242,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009223/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/748","name":"Uncanny + X-Men (1963) #462","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/749","name":"1 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/754","name":"Uncanny + X-Men (1963) #465","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/755","name":"4 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/757","name":"3 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1026","name":"Avengers + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5142","name":"NEW + EXCALIBUR (2005) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5152","name":"NEW + EXCALIBUR (2005) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5158","name":"NEW + EXCALIBUR (2005) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5160","name":"NEW + EXCALIBUR (2005) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5168","name":"NEW + EXCALIBUR (2005) #14","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5170","name":"NEW + EXCALIBUR (2005) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7742","name":"NEW + EXCALIBUR (2005) #16","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7746","name":"NEW + EXCALIBUR (2005) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8218","name":"NEW + EXCALIBUR (2005) #19","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8635","name":"NEW + EXCALIBUR (2005) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18647","name":"The + Monster!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19849","name":"X-MEN + ANNUAL (1970) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21025","name":"[A + New Life]","type":"cover"}],"returned":20},"events":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009223/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"}],"returned":8},"urls":[{"type":"detail","url":"http://marvel.com/characters/382/captain_britain?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Captain_Britain_(Brian_Braddock)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009223/captain_britain?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009261,"name":"Carol + Danvers","description":"","modified":"2012-06-06T15:38:57-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/1009261","comics":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009261/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41882","name":"Avengers + Assemble (2012) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45883","name":"Avengers + Assemble (2012) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17167","name":"Captain + Marvel (1968) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49018","name":"Captain + Marvel (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49019","name":"Captain + Marvel (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49020","name":"Captain + Marvel (2014) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49021","name":"Captain + Marvel (2014) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49022","name":"Captain + Marvel (2014) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49023","name":"Captain + Marvel (2014) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49024","name":"Captain + Marvel (2014) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49025","name":"Captain + Marvel (2014) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49026","name":"Captain + Marvel (2014) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49027","name":"Captain + Marvel (2014) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49028","name":"Captain + Marvel (2014) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8002","name":"Captain + Marvel (1968) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5198","name":"PULSE + VOL. 3: FEAR TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2386","name":"Pulse + (2004) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66963","name":"True + Believers: Carol Danvers (2018) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30208","name":"Ultimate + Comics Enemy (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30209","name":"Ultimate + Comics Enemy (2010) #4"}],"returned":20},"series":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009261/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/15373","name":"Avengers + Assemble (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2000","name":"Captain + Marvel (1968 - 1979)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18455","name":"Captain + Marvel (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/674","name":"Pulse + (2004 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1630","name":"PULSE + VOL. 3: FEAR TPB (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24221","name":"True + Believers: Carol Danvers (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9196","name":"Ultimate + Comics Enemy (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9026","name":"Ultimate + Comics New Ultimates (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13936","name":"Ultimate + Comics Ultimates (2011 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/759","name":"Ultimate + Extinction (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2223","name":"Ultimate + Galactus Trilogy (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/474","name":"Ultimate + X-Men (2001 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon + X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22365","name":"Wolverine: + Prehistory (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":15},"stories":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009261/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2353","name":"1 + of 5 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3546","name":"Ultimate + Extinction (2006) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3547","name":"1 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18237","name":"[none]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38454","name":"X-Facts: + Where Have All The Heroes Gone?","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44259","name":"Ultimate + X-Men (2001) #91","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44260","name":"Apocalypse + Now 3 of 5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44611","name":"Ultimate + X-Men (2001) #92","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44612","name":"Apocalypse + Now 4 of 5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44883","name":"Cover + #44883","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69242","name":"Ultimate + Comics Enemy (2010) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69243","name":"Interior + #69243","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69244","name":"Ultimate + Comics Enemy (2010) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69245","name":"Interior + #69245","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/70030","name":"Cover + #70030","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92352","name":"ULTIMATE + COMICS ULTIMATES (2011) #14","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92362","name":"ULTIMATE + COMICS ULTIMATES (2011) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92364","name":"ULTIMATE + COMICS ULTIMATES (2011) #13","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/94729","name":"AVENGERS + ASSEMBLE (2012) #11","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/103284","name":"AVENGERS + ASSEMBLE (2012) #19","type":"cover"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009261/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/311","name":"Marvel + NOW!"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/characters/2701/carol_danvers?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009261/carol_danvers?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_a_events_s_creators_by_ID.yml b/spec/vcr/Harkness_EventResource/gets_a_events_s_creators_by_ID.yml new file mode 100644 index 0000000..edb6a5d --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_a_events_s_creators_by_ID.yml @@ -0,0 +1,1175 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events/227/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 3de8054500d0ce5ed5c83e5ca6eb0c855641e895 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 14:49:26 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"3de8054500d0ce5ed5c83e5ca6eb0c855641e895","data":{"offset":0,"limit":20,"total":111,"count":20,"results":[{"id":807,"firstName":"Comicraft","middleName":"","lastName":"","suffix":"","fullName":"Comicraft","modified":"2018-07-24T15:54:47-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/90/4bc381514ef59","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/807","comics":{"available":352,"collectionURI":"http://gateway.marvel.com/v1/public/creators/807/comics","items":[{"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/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/17490","name":"Avengers + (1998) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17501","name":"Avengers + (1998) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17756","name":"Avengers + (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17757","name":"Avengers + (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17758","name":"Avengers + (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17759","name":"Avengers + (1996) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17760","name":"Avengers + (1996) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17761","name":"Avengers + (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17762","name":"Avengers + (1996) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17763","name":"Avengers + (1996) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17752","name":"Avengers + (1996) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17753","name":"Avengers + (1996) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17754","name":"Avengers + (1996) #12"}],"returned":20},"series":{"available":99,"collectionURI":"http://gateway.marvel.com/v1/public/creators/807/series","items":[{"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/3621","name":"Avengers + (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers + Vol. 1: World Trust (2003)"},{"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/937","name":"Avengers: + Earth''s Mightiest Heroes II (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14703","name":"Avengers: + X-Sanction (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1885","name":"Civil + War: Thunderbolts (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/449","name":"Daredevil + (1998 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20","name":"Daredevil + Vol. III: Wake Up (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8456","name":"Dark + Reign:Deadpool/Thunderbolts (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2004","name":"Deadpool + (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4605","name":"Deadpool + Classic Vol. 1 (2008)"}],"returned":20},"stories":{"available":401,"collectionURI":"http://gateway.marvel.com/v1/public/creators/807/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1024","name":"Avengers + (1998) #80","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1026","name":"Avengers + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1649","name":"Avengers + (1998) #77","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1947","name":"Avengers + (1998) #78","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1949","name":"Avengers + (1998) #79","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2295","name":"Avengers + (1998) #70","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3489","name":"5 + of 5 - The Collective","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3491","name":"1 + of 6 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3493","name":"2 + of 5 - Civil War/New Avengers Disassembled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3495","name":"3 + of 5 - Civil War/New Avengers Disassembled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3497","name":"4 + of 5 - Civil War/New Avengers Disassembled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3904","name":"THUNDERBOLTS + (2006) #100","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3908","name":"THUNDERBOLTS + (2006) #102","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3912","name":"THUNDERBOLTS + (2006) #104","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3914","name":"THUNDERBOLTS + (2006) #105","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4348","name":"FANTASTIC + FOUR: FIRST FAMILY (2006) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4350","name":"FANTASTIC + FOUR: FIRST FAMILY (2006) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5180","name":"1 + of 8 - 8XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5182","name":"3 + of 8 - 8XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5184","name":"4 + of 8 - 8XLS","type":"interiorStory"}],"returned":20},"events":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/creators/807/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/297","name":"Fall + of the Hulks"},{"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/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"}],"returned":10},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/807/comicraft?utm_campaign=apiRef&utm_source=abcd"}]},{"id":5898,"firstName":"Derek","middleName":"","lastName":"","suffix":"","fullName":"Derek","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/5898","comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5898/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18101","name":"Weapon + X (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"}],"returned":2},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5898/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon + X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1684","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (2006)"}],"returned":2},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5898/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38452","name":"Interior + #38452","type":"interiorStory"}],"returned":1},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5898/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/creators/5898/derek?utm_campaign=apiRef&utm_source=abcd"}]},{"id":5991,"firstName":"Toinay","middleName":"","lastName":"","suffix":"","fullName":"Toinay","modified":"2007-01-02T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/b0/4bb79943b4d17","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/5991","comics":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5991/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18253","name":"X-Calibre + (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18254","name":"X-Calibre + (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18255","name":"X-Calibre + (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18256","name":"X-Calibre + (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"}],"returned":5},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5991/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","name":"X-Calibre + (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1583","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (2005)"}],"returned":2},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5991/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38813","name":"Interior + #38813","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38816","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38819","name":"Cover + #38819","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38822","name":"","type":""}],"returned":4},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5991/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/creators/5991/toinay?utm_campaign=apiRef&utm_source=abcd"}]},{"id":937,"firstName":"Renato","middleName":"","lastName":"Arlem","suffix":"","fullName":"Renato + Arlem","modified":"2011-10-04T13:18:15-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/50/4bc5b1b6a701b","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","comics":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/creators/937/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41273","name":"Age + of Apocalypse (2012) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41263","name":"Age + of Apocalypse (2012) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41267","name":"Age + of Apocalypse (2012) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41266","name":"Age + of Apocalypse (2012) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41230","name":"Age + of Apocalypse Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41229","name":"Age + of Apocalypse Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48278","name":"Annihilation + (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16667","name":"ANNIHILATION + BOOK 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/97245","name":"Annihilation + Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4108","name":"Annihilation: + Silver Surfer (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4218","name":"Annihilation: + Silver Surfer (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4470","name":"Annihilation: + Silver Surfer (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45821","name":"Astonishing + X-Men (2004) #60"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45822","name":"Astonishing + X-Men (2004) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36945","name":"Captain + America and Batroc (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37570","name":"Captain + America: Allies & Enemies (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6257","name":"Hedge + Knight II: Sworn Sword (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2003","name":"Marvel + Nemesis: The Imperfects (2005) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2216","name":"Marvel + Nemesis: The Imperfects (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2333","name":"Marvel + Nemesis: The Imperfects (2005) #4"}],"returned":20},"series":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/creators/937/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/15331","name":"Age + of Apocalypse (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15318","name":"Age + of Apocalypse Vol. 1 (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15317","name":"Age + of Apocalypse Vol. 2 (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18285","name":"Annihilation + (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2974","name":"ANNIHILATION + BOOK 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33346","name":"Annihilation + Omnibus (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1078","name":"Annihilation: + Silver Surfer (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13194","name":"Captain + America and Batroc (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13504","name":"Captain + America: Allies & Enemies (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1946","name":"Hedge + Knight II: Sworn Sword (2007 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/881","name":"Marvel + Nemesis: The Imperfects (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16362","name":"Marvel''s + The Avengers: Black Widow Strikes (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3116","name":"Red + Prophet: The Tales of Alvin Maker Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15282","name":"Villains + for Hire (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3644","name":"X-Calibre + (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1035","name":"X-Factor + (2005 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34068","name":"X-Factor + By Peter David Omnibus Vol. 2 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18547","name":"X-Factor + by Peter David: The Complete Collection (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2551","name":"X-Factor + Vol. 2: Life and Death Matters (2007)"}],"returned":20},"stories":{"available":40,"collectionURI":"http://gateway.marvel.com/v1/public/creators/937/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4719","name":"1 + of 6 - 6XLS - Rise of the Imperfects","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4723","name":"3 + of 6 - 6XLS - Rise of the Imperfects","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4725","name":"4 + of 6 - 6XLS - Rise of the Imperfects","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4727","name":"5 + of 6 - 6XLS - Rise of the Imperfects","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4729","name":"6 + of 6 - 6XLS - Rise of the Imperfects","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5769","name":"3 + of 3","type":"interiorStory"},{"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/5928","name":"Annihilation: + Silver Surfer (2006) #2","type":"interiorStory"},{"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/6293","name":"Cover + #6293","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6294","name":"Interior + #6294","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7603","name":"X-Factor + 7-12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7934","name":"Cover + #7934","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8396","name":"12XLS + - 8 of 12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8407","name":"6XLS + - 1 of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36293","name":"Red + Prophet: The Tales of Alvin Maker 1-6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36294","name":"Red + Prophet: The Tales of Alvin Maker 1-6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38817","name":"Burn","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81932","name":"Interior + #81932","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83066","name":"Interior + #83066","type":"interiorStory"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/937/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/937/renato_arlem?utm_campaign=apiRef&utm_source=abcd"}]},{"id":11063,"firstName":"Terry","middleName":"Kevin","lastName":"Austin","suffix":"","fullName":"Terry + Kevin Austin","modified":"2020-01-27T14:17:23-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/11063","comics":{"available":217,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/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/29317","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29318","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66979","name":"Adventures + of Captain America (1991) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66980","name":"Adventures + of Captain America (1991) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66981","name":"Adventures + of Captain America (1991) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12637","name":"Alpha + Flight (1983) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12679","name":"Alpha + Flight (1983) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12676","name":"Alpha + Flight (1983) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12709","name":"Alpha + Flight (1983) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6744","name":"The + Amazing Spider-Man (1963) #335"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6746","name":"The + Amazing Spider-Man (1963) #337"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16887","name":"Amazing + Spider-Man Annual (1964) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16889","name":"Amazing + Spider-Man Annual (1964) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17842","name":"West + Coast Avengers Annual (1986) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42867","name":"Bizarre + Adventures (1981) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8036","name":"Captain + Marvel (1968) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8037","name":"Captain + Marvel (1968) #48"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8038","name":"Captain + Marvel (1968) #49"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8039","name":"Captain + Marvel (1968) #50"}],"returned":20},"series":{"available":81,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9994","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9995","name":"ACTS + OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24227","name":"Adventures + of Captain America (1991 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3614","name":"Age + of Apocalypse: The Chosen (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16347","name":"Bizarre + Adventures (1981)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2000","name":"Captain + Marvel (1968 - 1979)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3751","name":"Classic + X-Men (1986 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7303","name":"Cloak + and Dagger (1983)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14157","name":"Cloak + and Dagger (1985 - 1987)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25724","name":"Cloak + and Dagger: Predator and Prey (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19133","name":"Deadly + Hands of Kung Fu (1974 - 1977)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3743","name":"Defenders + (1972 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3740","name":"Doctor + Strange (1974 - 1988)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1780","name":"Doctor + Strange Vs. Dracula: The Montesi Formula (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24022","name":"Excalibur + Epic Collection: The Cross-Time Caper (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3736","name":"Excalibur: + Mojo Mayhem (1989)"}],"returned":20},"stories":{"available":268,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14076","name":"Amazing + Spider-Man (1963) #335","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14077","name":"Shocks!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14080","name":"Amazing + Spider-Man (1963) #337","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14081","name":"Rites + and Wrongs","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14632","name":"Cover + #14632","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14634","name":"Cover + #14634","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15435","name":"UNCANNY + X-MEN (1963) #125","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15437","name":"UNCANNY + X-MEN (1963) #126","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15439","name":"UNCANNY + X-MEN (1963) #127","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15441","name":"UNCANNY + X-MEN (1963) #128","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15443","name":"UNCANNY + X-MEN (1963) #129","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15447","name":"UNCANNY + X-MEN (1963) #130","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15449","name":"Cover + #15449","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15451","name":"Cover + #15451","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15455","name":"Heroes + and Hellfire","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15457","name":"Defeated + by Dark Phoenix!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15463","name":"Exit + Cyclops!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15465","name":"Welcome + to the X-Men Kitty Pryde Hope You Survive the Experience!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15469","name":"Fist + to Fist With the Savage Fury of Wen-Di-Go!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16982","name":"[The + Last Viking]","type":"interiorStory"}],"returned":20},"events":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11063/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":9},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/11063/terry_kevin_austin?utm_campaign=apiRef&utm_source=abcd"}]},{"id":232,"firstName":"Chris","middleName":"","lastName":"Bachalo","suffix":"","fullName":"Chris + Bachalo","modified":"2016-09-09T11:44:25-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/70/4bc5ebc0460b2","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/232","comics":{"available":461,"collectionURI":"http://gateway.marvel.com/v1/public/creators/232/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/45762","name":"A+X + Vol. 1: = Awesome (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43495","name":"A+X + (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43498","name":"A+X + (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43499","name":"A+X + (2012) #3 (Mcguinness Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/44569","name":"A+X + (2012) #3 (Tan Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72939","name":"Age + of X-Man: Nextgen (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72940","name":"Age + of X-Man: Nextgen (2019) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72941","name":"Age + of X-Man: Nextgen (2019) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72942","name":"Age + of X-Man: Nextgen (2019) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/72943","name":"Age + of X-Man: Nextgen (2019) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73064","name":"Age + Of X-Man: Nextgen (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37996","name":"Age + of X: Alpha (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46924","name":"All-New + X-Men (2012) #6 (X-​Men 50th Anniversary Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20962","name":"Amazing + Spider-Man (1999) #555"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20963","name":"Amazing + Spider-Man (1999) #556"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20964","name":"Amazing + Spider-Man (1999) #557"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21502","name":"Amazing + Spider-Man (1999) #564"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22263","name":"Amazing + Spider-Man (1999) #575"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22466","name":"Amazing + Spider-Man (1999) #576"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30305","name":"Amazing + Spider-Man (1999) #630"}],"returned":20},"series":{"available":179,"collectionURI":"http://gateway.marvel.com/v1/public/creators/232/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17271","name":"A+X + Vol. 1: = Awesome (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26372","name":"Age + Of X-Man: Nextgen (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26331","name":"Age + of X-Man: Nextgen (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13603","name":"Age + of X: Alpha (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34287","name":"Amazing + Spider-Man By Nick Spencer Omnibus Vol. 1 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27662","name":"Amazing + Spider-Man By Nick Spencer Vol. 10: Green Goblin Returns (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25847","name":"Amazing + Spider-Man by Nick Spencer Vol. 3: Lifetime Achievement (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6604","name":"Amazing + Spider-Man: Extra! (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27421","name":"Amazing + Spider-Man: Full Circle (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25848","name":"Amazing + Spider-Man: Hunted (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16875","name":"Avengers + Arena (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23600","name":"Avengers + by Brian Michael Bendis: The Complete Collection Vol. 2 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17316","name":"Avengers + Vs. X-Men Companion (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34460","name":"Avengers + Vs. X-Men Omnibus (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22390","name":"CAPTAIN + AMERICA: MARVEL KNIGHTS VOL. 2 TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24532","name":"Cerebro''s + Guide to the X-Men (1998)"}],"returned":20},"stories":{"available":639,"collectionURI":"http://gateway.marvel.com/v1/public/creators/232/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/270","name":"The + Ultimates vs. the Ultimate X-Men: the battle begins. When the X-Men do the + worst thing they could to humanity, the governmen","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/674","name":"X-MEN + (2004) #188","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/675","name":"1 + of 6 - Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/676","name":"X-MEN + (2004) #189","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/677","name":"2 + of 6 -Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/679","name":"3 + of 6 -Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/680","name":"4 + of 6 - Supernovas","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/681","name":"4 + of 6 - Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/682","name":"5 + of 6 - Supernovas","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/683","name":"5 + of 6 - Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/684","name":"6 + of 6 - Supernovas","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/685","name":"6 + of 6 - Supernovas","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/754","name":"Uncanny + X-Men (1963) #465","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/756","name":"Uncanny + X-Men (1963) #464","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/758","name":"Uncanny + X-Men (1963) #466","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/759","name":"1 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/760","name":"Uncanny + X-Men (1963) #467","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/761","name":"2 + of 3 - Grey''s End","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/762","name":"Uncanny + X-Men (1963) #468","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/763","name":"3 + of 3 - Grey''s End","type":"interiorStory"}],"returned":20},"events":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/creators/232/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"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/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/316","name":"X-Men: + Battle of the Atom"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"}],"returned":13},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/232/chris_bachalo?utm_campaign=apiRef&utm_source=abcd"}]},{"id":506,"firstName":"Joe","middleName":"","lastName":"Bennett","suffix":"","fullName":"Joe + Bennett","modified":"2018-07-12T16:33:13-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/d0/4bc6565b2b887","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","comics":{"available":274,"collectionURI":"http://gateway.marvel.com/v1/public/creators/506/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43504","name":"A+X + (2012) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66482","name":"Avengers + (2016) #684"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47633","name":"AVENGERS/IRON + MAN: FIRST SIGN TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60427","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 4 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61411","name":"Black + Panther: World of Wakanda (2016) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63673","name":"Black + Panther: World of Wakanda (2016) #6 (Velluto Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62116","name":"Black + Panther: World of Wakanda (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7846","name":"Captain + America (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7847","name":"Captain + America (1996) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7848","name":"Captain + America (1996) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7837","name":"Captain + America (1996) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7838","name":"Captain + America (1996) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7839","name":"Captain + America (1996) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/64178","name":"Captain + America: Steve Rogers (2016) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/573","name":"Captain + America & the Falcon (2004) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/784","name":"Captain + America & the Falcon (2004) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/859","name":"Captain + America & the Falcon (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66","name":"Captain + America & the Falcon (2004) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1557","name":"Captain + America & the Falcon (2004) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56546","name":"Captain + America & the Falcon by Christopher Priest: The Complete Collection (Trade + Paperback)"}],"returned":20},"series":{"available":105,"collectionURI":"http://gateway.marvel.com/v1/public/creators/506/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23657","name":"Amazing + Spider-Man Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22547","name":"Avengers + (2016 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17966","name":"AVENGERS/IRON + MAN: FIRST SIGN TPB (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22311","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 4 (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22549","name":"Black + Panther: World of Wakanda (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22744","name":"Black + Panther: World of Wakanda (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6478","name":"Captain + America (1996 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/716","name":"Captain + America & the Falcon (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20708","name":"Captain + America & the Falcon by Christopher Priest: The Complete Collection (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31545","name":"Captain + America Anniversary Tribute (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36354","name":"Captain + America by Nick Spencer Omnibus Vol. 1 (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20711","name":"Captain + America: Sam Wilson (2015 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29245","name":"Captain + America: Sam Wilson - The Complete Collection Vol. 2 (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21098","name":"Captain + America: Steve Rogers (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21816","name":"Carnage + Classic (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31897","name":"Carnage: + Black, White & Blood (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26476","name":"Defenders: + The Best Defense (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/574","name":"Elektra + (2001 - 2004)"}],"returned":20},"stories":{"available":306,"collectionURI":"http://gateway.marvel.com/v1/public/creators/506/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/196","name":"After + taking on the role as ruler of Asgard, Thor has relocated his legendary home + to float directly over New York City. But how","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/240","name":"Armed + with superior fighting skills and her razor-sharp sais, for years the femme + fatale Elektra has offered her killing touch t","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1821","name":"Interior + #1821","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1908","name":"Interior + #1908","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2044","name":"Interior + #2044","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2857","name":"2 + of 5 - Brothers and Keepers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2863","name":"Cover + #2863","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2871","name":"Captain + America & the Falcon (2004) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2873","name":"\"BROTHERS + & KEEPERS (ADELPHOITE PHYLAXES)\" PART 1 (OF 5) Haunted by his personal failures, + Captain America comes to suspect that","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2877","name":"4 + of 5 - Brothers and Keepers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4843","name":"Interior + #4843","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24498","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24499","name":"Serpents + and Eagles, Part 3: Capital Punishment","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24500","name":"Story + from Captain America (1996) #11","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24501","name":"Story + from Captain America (1996) #12","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24510","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24512","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24513","name":"Serpents + and Eagles: Part 1: A First Small Hisssss","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24514","name":"Story + from Captain America (1996) #9","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/40259","name":"By + the Light","type":"interiorStory"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/506/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers + Disassembled"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/506/joe_bennett?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1945,"firstName":"Mark","middleName":"","lastName":"Bernardo","suffix":"","fullName":"Mark + Bernardo","modified":"2007-01-01T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/30/4bb52a7e1cf57","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","comics":{"available":50,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1945/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62304","name":"Spider-Man: + 101 Ways to End the Clone Saga (1997) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8385","name":"Daredevil + (1964) #380"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51618","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/68450","name":"Green + Goblin (1995) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84082","name":"Heroes + Reborn: Doom (2000) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84083","name":"Heroes + Reborn: Doomsday (2000) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84085","name":"Heroes + Reborn: Rebel (2000) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65953","name":"Machine + Man/Bastion Annual (1998) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10036","name":"Marvel + Comics Presents (1988) #122"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10047","name":"Marvel + Comics Presents (1988) #132"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/69172","name":"New + Warriors (1990) #41"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96928","name":"New + Warriors Classic Omnibus Vol. 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14699","name":"Peter + Parker, the Spectacular Spider-Man (1976) #240"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10517","name":"Peter + Parker: Spider-Man (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10528","name":"Peter + Parker: Spider-Man (1999) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10550","name":"Peter + Parker: Spider-Man (1999) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10561","name":"Peter + Parker: Spider-Man (1999) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10571","name":"Peter + Parker: Spider-Man (1999) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/63899","name":"Sensational + Spider-Man (1996) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66243","name":"Sensational + Spider-Man (1996) #25"}],"returned":20},"series":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1945/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19365","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7077","name":"Green + Goblin (1995 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29622","name":"Heroes + Reborn: Doom (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29623","name":"Heroes + Reborn: Doomsday (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29625","name":"Heroes + Reborn: Rebel (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23927","name":"Machine + Man/Bastion Annual (1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel + Comics Presents (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16341","name":"New + Warriors (1990 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33213","name":"New + Warriors Classic Omnibus Vol. 2 (2022)"},{"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/2060","name":"Peter + Parker: Spider-Man (1999 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19135","name":"Sensational + Spider-Man (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2069","name":"Spider-Man + (1990 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23054","name":"SPIDER-MAN + BY TODD DEZAGO & MIKE WIERINGO VOL. 1 TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22893","name":"Spider-Man: + 101 Ways to End the Clone Saga (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16291","name":"Spider-Man: + The Complete Ben Reilly Epic Book 6 (2012 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31344","name":"Spider-Man: + The Osborn Journal (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5850","name":"Strange + Tales (1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5855","name":"Strange + Tales: Dark Corners (1998)"}],"returned":20},"stories":{"available":87,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1945/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16360","name":"Just + One Good Story","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23713","name":"Cover + #23713","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23714","name":"The + Night of the Goblin! (Revelations, Part 4)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23715","name":"Cover + #23715","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23716","name":"SHOC","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23814","name":"Cover + #23814","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23815","name":"Lock + and Load (Storm Warnings, Part 2)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23816","name":"Crawl + Space","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23817","name":"Cover + #23817","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23818","name":"Media + Blitz (Storm Warnings, Part 3)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23819","name":"Crawl + Space","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23820","name":"Statement + of Ownership","type":"statement of ownership"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23872","name":"The + Night of the Goblin! (Revelations, Part 4)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25559","name":"Memories","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25603","name":"Beneath + it all","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25615","name":"The + Trouble with Girls","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25627","name":"Creatures + of the night","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25731","name":"The + Time Before, Part 1 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25735","name":"The + Time Before, Part 2 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25746","name":"Hero + of the People, Part 1 of 2","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1945/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/creators/1945/mark_bernardo?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1288,"firstName":"Jerry","middleName":"","lastName":"Bingham","suffix":"","fullName":"Jerry + Bingham","modified":"2013-01-28T15:49:08-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/80/4bb6e97e8891e","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1288","comics":{"available":48,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1288/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/92859","name":"Aliens: + The Original Years Omnibus Vol. 3 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/105877","name":"Amazing + Spider-Man Epic Collection: The Hero Killers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51401","name":"Ant-Man: + Scott Lang (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17859","name":"Black + Panther (1977) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17860","name":"Black + Panther (1977) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17861","name":"Black + Panther (1977) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4454","name":"Black + Panther by Jack Kirby Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71897","name":"Black + Panther Epic Collection: Revenge Of The Black Panther (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7627","name":"Captain + America (1968) #246"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59212","name":"Defenders + Epic Collection: The Six-Fingered Hand Saga (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46939","name":"ESSENTIAL + CAPTAIN AMERICA VOL. 7 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29367","name":"Essential + Defenders Vol. 5 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16032","name":"Essential + Spider-Woman Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46151","name":"Guardians + of the Galaxy: Tomorrow''s Avengers Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5705","name":"Heroes + Reborn: Avengers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9363","name":"Iron + Man (1968) #131"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9364","name":"Iron + Man (1968) #132"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9365","name":"Iron + Man (1968) #133"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9366","name":"Iron + Man (1968) #134"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9367","name":"Iron + Man (1968) #135"}],"returned":20},"series":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1288/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/31726","name":"Aliens: + The Original Years Omnibus Vol. 3 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36595","name":"Amazing + Spider-Man Epic Collection: The Hero Killers (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19282","name":"Ant-Man: + Scott Lang (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3627","name":"Black + Panther (1977 - 1979)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1700","name":"Black + Panther by Jack Kirby Vol. 2 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26186","name":"Black + Panther Epic Collection: Revenge Of The Black Panther (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21539","name":"Defenders + Epic Collection: The Six-Fingered Hand Saga (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17685","name":"ESSENTIAL + CAPTAIN AMERICA VOL. 7 TPB (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9439","name":"Essential + Defenders Vol. 5 (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2566","name":"Essential + Spider-Woman Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17398","name":"Guardians + of the Galaxy: Tomorrow''s Avengers Vol. 2 (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1813","name":"Heroes + Reborn: Avengers (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron + Man (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3723","name":"Iron + Man Annual (1976 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17417","name":"Iron + Man by Michelinie, Layton & Romita Jr. Omnibus (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17418","name":"Iron + Man by Michelinie, Layton & Romita Jr. Omnibus (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18091","name":"Iron + Man Epic Collection: The Enemy Within (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16424","name":"Ka-Zar + (1981 - 1984)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33211","name":"Marvel + Masterworks: Marvel Two-in-One Vol. 6 (2022)"}],"returned":20},"stories":{"available":60,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1288/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19985","name":"The + Killing of Windeagle!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19987","name":"Journey + Through the Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19989","name":"The + Ending, In Anger!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20569","name":"Cover + #20569","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20570","name":"What + is and What Never Should Be","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20571","name":"Cover + #20571","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20572","name":"The + Beasts in the Jungle!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/20574","name":"Revenge + of the Black Panther!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/32740","name":"Spider-Woman + 26-50, Marvel Team-Up 97, Uncanny X-Men 148","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37964","name":"Cover + #37964","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/37965","name":"What + is and What Never Should Be","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38637","name":"The + Transformation of Nemesis to Holocaust","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41427","name":"The + Coming of Her!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41429","name":"The + Taking of Counter-Earth!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41431","name":"Suffer + Not A Warlock to Live!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41519","name":"\"To + Judge A Nighthawk!\"","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41523","name":"Cover + #41523","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41524","name":"The + Assassin Academy","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/41818","name":"And + Machine Man Makes 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42597","name":"Cover + #42597","type":"cover"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1288/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/creators/1288/jerry_bingham?utm_campaign=apiRef&utm_source=abcd"}]},{"id":3626,"firstName":"Pat","middleName":"","lastName":"Brosseau","suffix":"","fullName":"Pat + Brosseau","modified":"2007-01-01T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4bb69273ca43f","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3626","comics":{"available":154,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3626/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56524","name":"AVENGERS: + THE DEATH OF MOCKINGBIRD TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17886","name":"Captain + America Annual (1971) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103280","name":"Deadpool + Epic Collection: Mission Improbable (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/98740","name":"Doctor + Strange Epic Collection: Infinity War (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93796","name":"Doctor + Strange Epic Collection: The Vampiric Verses (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20181","name":"Doctor + Strange, Sorcerer Supreme (1988) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20182","name":"Doctor + Strange, Sorcerer Supreme (1988) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20183","name":"Doctor + Strange, Sorcerer Supreme (1988) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20184","name":"Doctor + Strange, Sorcerer Supreme (1988) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20185","name":"Doctor + Strange, Sorcerer Supreme (1988) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20186","name":"Doctor + Strange, Sorcerer Supreme (1988) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20187","name":"Doctor + Strange, Sorcerer Supreme (1988) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20188","name":"Doctor + Strange, Sorcerer Supreme (1988) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20189","name":"Doctor + Strange, Sorcerer Supreme (1988) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20191","name":"Doctor + Strange, Sorcerer Supreme (1988) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20193","name":"Doctor + Strange, Sorcerer Supreme (1988) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20194","name":"Doctor + Strange, Sorcerer Supreme (1988) #33"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20195","name":"Doctor + Strange, Sorcerer Supreme (1988) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20196","name":"Doctor + Strange, Sorcerer Supreme (1988) #35"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20198","name":"Doctor + Strange, Sorcerer Supreme (1988) #37"}],"returned":20},"series":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3626/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20702","name":"AVENGERS: + THE DEATH OF MOCKINGBIRD TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3629","name":"Captain + America Annual (1971 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35582","name":"Deadpool + Epic Collection: Mission Improbable (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34037","name":"Doctor + Strange Epic Collection: Infinity War (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32034","name":"Doctor + Strange Epic Collection: The Vampiric Verses (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3741","name":"Doctor + Strange, Sorcerer Supreme (1988 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31953","name":"Doctor + Strange, Sorcerer Supreme Omnibus Vol. 3 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic + Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30921","name":"Infinity + Gauntlet Omnibus (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30920","name":"INFINITY + GAUNTLET OMNIBUS HC PEREZ COVER [NEW PRINTING] (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33982","name":"Invaders + Omnibus (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2029","name":"Iron + Man (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3723","name":"Iron + Man Annual (1976 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19920","name":"MARVEL + FIRSTS: THE 1990S OMNIBUS HC (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26786","name":"Peter + Porker, the Spectacular Spider-Ham (1985 - 1987)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31732","name":"Predator: + The Original Years Omnibus Vol. 1 (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35592","name":"Star + Wars Legends Epic Collection: The New Republic Vol. 6 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24365","name":"True + Believers: Wolverine - The Dying Game (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"}],"returned":20},"stories":{"available":189,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3626/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19589","name":"Green + Politics","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22601","name":"Crossing + Swords","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22604","name":"Ooohhh....Siena!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22606","name":"Memories + are Made of This","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22608","name":"In + the Name of Love","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22610","name":"Hello, + I Must Be Going","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22613","name":"Dog + Years","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28807","name":"Killing + Zone","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28809","name":"Terminal + Trauma","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28811","name":"Grave + Undertakings","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28813","name":"The + Hunter in Darkness","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28815","name":"Blood + Sand and Claws!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28817","name":"...It + Tolls For Thee","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28819","name":"Fall + Back and Spring Forward","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28821","name":"See + Venice & Die!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28823","name":"Deconstruction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28828","name":"Reconstruction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28834","name":"Papa + Was a Rolling Stone!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28836","name":"Under + the Skin","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28839","name":"Babies + at Sea","type":"interiorStory"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3626/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/219","name":"Siege + of Darkness"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3626/pat_brosseau?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1909,"firstName":"Steve","middleName":"","lastName":"Buccellato","suffix":"","fullName":"Steve + Buccellato","modified":"2023-02-12T09:04:44-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/90/4bc4705a0de2c","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1909","comics":{"available":295,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1909/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65365","name":"Amazing + Spider-Man Annual (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65951","name":"Amazing + Spider-Man Annual (2000) #1"},{"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/6933","name":"Avengers + Annual (1967) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17774","name":"Avengers + Annual (1967) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17776","name":"Avengers + Annual (1967) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82262","name":"AVENGERS + WEST COAST EPIC COLLECTION: TALES TO ASTONISH TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73151","name":"Blade: + Vampire Hunter (1999) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73152","name":"Blade: + Vampire Hunter (1999) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7748","name":"Captain + America (1968) #367"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7749","name":"Captain + America (1968) #368"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7750","name":"Captain + America (1968) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7751","name":"Captain + America (1968) #370"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7752","name":"Captain + America (1968) #371"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7753","name":"Captain + America (1968) #372"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7754","name":"Captain + America (1968) #373"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7755","name":"Captain + America (1968) #374"}],"returned":20},"series":{"available":86,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1909/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/23925","name":"Amazing + Spider-Man Annual (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23794","name":"Amazing + Spider-Man Annual (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","name":"Astonishing + X-Men (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29184","name":"AVENGERS + WEST COAST EPIC COLLECTION: TALES TO ASTONISH TPB (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26394","name":"Blade: + Vampire Hunter (1999 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30952","name":"Captain + Marvel vs. Rogue (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3747","name":"D.P.7 + (1986 - 1989)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30443","name":"Daredevil + Epic Collection: Last Rites (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4605","name":"Deadpool + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21458","name":"DEADPOOL + CLASSIC VOL. 15: ALL THE REST TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21304","name":"DEADPOOL + FIRSTS TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29200","name":"Deadpool: + Hey, It''s Deadpool! Marvel Select (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8836","name":"Gambit + (1993)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3734","name":"Generation + Next (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6256","name":"Generation + X (1994 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32037","name":"Generation + X Epic Collection: Back To School (2021)"}],"returned":20},"stories":{"available":322,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1909/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/528","name":"Interior + #528","type":"interiorStory"},{"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/18022","name":"House + Calls","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18065","name":"Lair + of the Ice-Worm","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18088","name":"Superia + Unbound","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21581","name":"United + We Stand","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21583","name":"War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21585","name":"The + Beginning of the End, Part One","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21624","name":"Here + Be Monsters!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21627","name":"A + Case of the Cutes","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/21630","name":"Crowned + Heads","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24061","name":"Everything + is Permitted Nothing is Forbidden... ...In Virtual Unreality","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24062","name":"Prophet + and Loss","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24065","name":"Whoever + Holds This Hammer...","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24066","name":"The + Rise of the Hammer","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24067","name":"The + Fall of the Hammer Part 1 of 5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24068","name":"The + Hammer Strikes: Chapter One of The Fall Of The Hammer","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24071","name":"I''m + Fighting my own House!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24072","name":"Blown + Circuits","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24079","name":"System + Clash","type":"cover"}],"returned":20},"events":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1909/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/32","name":"Kings + of Pain"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/280","name":"X-Tinction + Agenda"}],"returned":8},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1909/steve_buccellato?utm_campaign=apiRef&utm_source=abcd"}]},{"id":71,"firstName":"Mark","middleName":"","lastName":"Buckingham","suffix":"","fullName":"Mark + Buckingham","modified":"2013-10-11T00:19:53-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/90/4bc63213e44a2","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/71","comics":{"available":119,"collectionURI":"http://gateway.marvel.com/v1/public/creators/71/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7397","name":"Cable + (1993) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/70406","name":"DARKHOLD: + PAGES FROM THE BOOK OF SINS - THE COMPLETE COLLECTION TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/80164","name":"Doctor + Strange Sorcerer Supreme Annual (1992) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20228","name":"Doctor + Strange, Sorcerer Supreme (1988) #64"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20229","name":"Doctor + Strange, Sorcerer Supreme (1988) #65"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20230","name":"Doctor + Strange, Sorcerer Supreme (1988) #66"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20233","name":"Doctor + Strange, Sorcerer Supreme (1988) #69"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20240","name":"Doctor + Strange, Sorcerer Supreme (1988) #75"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20243","name":"Doctor + Strange, Sorcerer Supreme (1988) #78"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20246","name":"Doctor + Strange, Sorcerer Supreme (1988) #80"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20247","name":"Doctor + Strange, Sorcerer Supreme (1988) #81"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20248","name":"Doctor + Strange, Sorcerer Supreme (1988) #82"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20250","name":"Doctor + Strange, Sorcerer Supreme (1988) #84"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20251","name":"Doctor + Strange, Sorcerer Supreme (1988) #85"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20252","name":"Doctor + Strange, Sorcerer Supreme (1988) #86"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20253","name":"Doctor + Strange, Sorcerer Supreme (1988) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20254","name":"Doctor + Strange, Sorcerer Supreme (1988) #88"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20255","name":"Doctor + Strange, Sorcerer Supreme (1988) #89"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20257","name":"Doctor + Strange, Sorcerer Supreme (1988) #90"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93510","name":"Doctor + Strange, Sorcerer Supreme Omnibus Vol. 3 (Hardcover)"}],"returned":20},"series":{"available":37,"collectionURI":"http://gateway.marvel.com/v1/public/creators/71/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25729","name":"DARKHOLD: + PAGES FROM THE BOOK OF SINS - THE COMPLETE COLLECTION TPB (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26093","name":"Doctor + Strange Sorcerer Supreme Annual (1992 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3741","name":"Doctor + Strange, Sorcerer Supreme (1988 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31953","name":"Doctor + Strange, Sorcerer Supreme Omnibus Vol. 3 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24554","name":"Fantastic + Four (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25672","name":"Fantastic + Four by Waid & Wieringo (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13705","name":"Fantastic + Four by Waid & Wieringo Ultimate Collection Book 1 (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1265","name":"Fantastic + Four Vol. 1 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25306","name":"Fantastic + Four Vol. 2: Mr. And Mrs. Grimm (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3734","name":"Generation + Next (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6256","name":"Generation + X (1994 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32037","name":"Generation + X Epic Collection: Back To School (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34360","name":"Generation + X Epic Collection: Emplate''s Revenge (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27020","name":"Marvel + Comics (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19920","name":"MARVEL + FIRSTS: THE 1990S OMNIBUS HC (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28248","name":"Marvel + Frontier Comics Unlimited (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20383","name":"MARVEL + FRONTIER COMICS: THE COMPLETE COLLECTION TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19106","name":"Marvel + Valentine Special (1997)"}],"returned":20},"stories":{"available":157,"collectionURI":"http://gateway.marvel.com/v1/public/creators/71/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1882","name":"Spectacular + Spider-Man (2003) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1883","name":"1 + of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24214","name":"Family + Secrets","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/31862","name":"interior + to FF (1998) #65","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/31863","name":"interior + to FF (1998) #66","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42918","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42919","name":"From + The Top","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42921","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42922","name":"Hither + Comes the Suger Man!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42924","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42925","name":"It + Only Hurts When I Sing.","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42927","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43371","name":"the + Doctor is in!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43378","name":"ashka + yrwer","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43379","name":"Earthquake + Logic [Earthquake Logic, Part 1]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43381","name":"Tectonic + Shift [Earthquake Logic, Part 2]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43387","name":"Seismics + [Earthquake Logic: Part 3]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43393","name":"and + Doctor Strange and Doctor Strange and Doctor Strange","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/43394","name":"Journey + to the East [The Homecoming, Part One]","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/71/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/71/mark_buckingham?utm_campaign=apiRef&utm_source=abcd"}]},{"id":5268,"firstName":"Jim","middleName":"","lastName":"Calafiore","suffix":"","fullName":"Jim + Calafiore","modified":"2018-07-16T16:08:33-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/10/4bc36bedcee24","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/5268","comics":{"available":81,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5268/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5976","name":"Annihilation: + Heralds of Galactus (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52998","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60427","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 4 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22846","name":"Captain + Marvel (2000) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60096","name":"Century: + Distant Sons (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6139","name":"Civil + War: Fantastic Four (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6480","name":"Civil + War: Fantastic Four (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5941","name":"Civil + War: The Road to Civil War (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8492","name":"Deadpool + (1997) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8499","name":"Deadpool + (1997) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8500","name":"Deadpool + (1997) #44"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8501","name":"Deadpool + (1997) #45"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48283","name":"DEADPOOL + BY DANIEL WAY: THE COMPLETE COLLECTION VOL. 3 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46055","name":"Deadpool + Classic Vol. 8 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/57439","name":"Deadpool + Classic Omnibus Vol. 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65329","name":"Deadpool + Classic Vol. 20: Ultimate Deadpool (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36594","name":"DEADPOOL + VOL. 7: SPACE ODDITY PREMIERE HC (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16304","name":"Exiles + (2001) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16251","name":"Exiles + (2001) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16256","name":"Exiles + (2001) #16"}],"returned":20},"series":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5268/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1864","name":"Annihilation: + Heralds of Galactus (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19826","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 2 (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22311","name":"Black + Panther by Christopher Priest: The Complete Collection Vol. 4 (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/690","name":"Captain + Marvel (2000 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22017","name":"Century: + Distant Sons (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1898","name":"Civil + War: Fantastic Four (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1887","name":"Civil + War: The Road to Civil War (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18290","name":"DEADPOOL + BY DANIEL WAY: THE COMPLETE COLLECTION VOL. 3 TPB (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20926","name":"Deadpool + Classic Omnibus Vol. 1 (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23780","name":"Deadpool + Classic Vol. 20: Ultimate Deadpool (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17363","name":"Deadpool + Classic Vol. 8 (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12984","name":"DEADPOOL + VOL. 7: SPACE ODDITY PREMIERE HC (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7768","name":"Exiles + Ultimate Collection Book 3 (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1419","name":"Exiles + Vol. 10: Age of Apocalypse (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1462","name":"Exiles + Vol. 11: Time Breakers (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1899","name":"Exiles + Vol. 14: The New Exiles (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/154","name":"Exiles + Vol. 3: Out of Time (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/199","name":"Exiles + Vol. 4: Legacy (2003)"}],"returned":20},"stories":{"available":85,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5268/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/566","name":"Interior + #566","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/961","name":"3 + of ?","type":"interiorStory"},{"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/965","name":"3 + of 6 - Civil War","type":"interiorStory"},{"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/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/973","name":"6 + of 6 - Civil War (45th Anniversary)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1512","name":"Interior + #1512","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1524","name":"\"LIVING + PLANET\" PART 2 (OF 2) Ego the Living Planet – a father?! It’s up to the + Exiles, the Avengers, and the Fantastic Four t","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1525","name":"1 + of 3 - Bump in the Night","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1526","name":"1 + of 3 - Bump in the Night","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1527","name":"2 + of 3 - Bump in the Night","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1528","name":"2 + of 3 - Bump in the Night","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1529","name":"3 + of 3 - Bump in the Night","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1530","name":"3 + of 3 - Bump in the Night","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/5268/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/5268/jim_calafiore?utm_campaign=apiRef&utm_source=abcd"}]},{"id":452,"firstName":"Virtual","middleName":"","lastName":"Calligr","suffix":"","fullName":"Virtual + Calligr","modified":"2019-06-25T18:51:11-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/b0/4bc5d6088b664","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","comics":{"available":1519,"collectionURI":"http://gateway.marvel.com/v1/public/creators/452/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43495","name":"A+X + (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43501","name":"A+X + (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41265","name":"Age + of Apocalypse (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41271","name":"Age + of Apocalypse (2012) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37283","name":"Alias + (2001) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43467","name":"All-New + X-Men (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43478","name":"All-New + X-Men (2012) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12639","name":"Alpha + Flight (1983) #100"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16447","name":"Amazing + Spider-Man (1999) #544"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21841","name":"Amazing + Spider-Man (1999) #544 (Djurdjevic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17338","name":"Amazing + Spider-Man (1999) #546"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17341","name":"Amazing + Spider-Man (1999) #548"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21321","name":"Amazing + Spider-Man (1999) #561"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21322","name":"Amazing + Spider-Man (1999) #562"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21323","name":"Amazing + Spider-Man (1999) #563"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21502","name":"Amazing + Spider-Man (1999) #564"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21503","name":"Amazing + Spider-Man (1999) #565"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21705","name":"Amazing + Spider-Man (1999) #569"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21932","name":"Amazing + Spider-Man (1999) #570"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21931","name":"Amazing + Spider-Man (1999) #571"}],"returned":20},"series":{"available":470,"collectionURI":"http://gateway.marvel.com/v1/public/creators/452/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15331","name":"Age + of Apocalypse (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5958","name":"Amazing + Spider-Man Annual (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9071","name":"Amazing + Spider-Man Digital (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6604","name":"Amazing + Spider-Man: Extra! (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18560","name":"Anthem + BlueCross Presents: Iron Man & Habit Heroes (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3619","name":"Astonishing + X-Men (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16477","name":"Astonishing + X-Men Annual (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7576","name":"Astonishing + X-Men by Joss Whedon & John Cassaday (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1464","name":"Astonishing + X-Men Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1298","name":"Astonishing + X-Men Vol. 1: Gifted (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1422","name":"Astonishing + X-Men Vol. 2: Dangerous (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1485","name":"Astonishing + X-Men Vol. 3: Torn (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5055","name":"Astonishing + X-Men Vol. 4: Unstoppable (2008)"}],"returned":20},"stories":{"available":1711,"collectionURI":"http://gateway.marvel.com/v1/public/creators/452/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/777","name":"1 + of 12 - Rise and Fall of the Shi-AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/779","name":"2 + of 12 - Rise and Fall of the Shi''AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/780","name":"3 + of 12 - Rise and Fall of the Shi-AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/782","name":"4 + of 12 - Rise and Fall of the Shi''AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/784","name":"5 + of 12 - Rise and Fall of the Shi-AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/788","name":"7 + of 12 - Rise and Fall of the Shi-AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/790","name":"8 + of 12 - Rise and Fall of the Shi-AR Empire","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1291","name":"1 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1293","name":"2 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1327","name":"Interior + #1327","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1329","name":"SELF-CONTAINED + STORY! It’s the Breakfast Club redux as Peter, Mary Jane, Liz, Flash and + Kong are busted and given detention. No","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1331","name":"\"SWITCHEROO\" + PART 1 (OF 2) A bizarre occurrence brings Spider-Man and Wolverine together + for the weirdest team-up in super-hero ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1333","name":"\"SWITCHEROO\" + PART 2 (OF 2) A bizarre occurrence brings Spider-Man and Wolverine together + for the weirdest team-up in super-hero ","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1335","name":"1 + of 2 - Sorceror Supreme","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1337","name":"2 + of 2 - Sorceror Supreme","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1339","name":"1 + of 6 - Hobgoblin","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1341","name":"2 + of 6 - Hobgoblin","type":"interiorStory"}],"returned":20},"events":{"available":22,"collectionURI":"http://gateway.marvel.com/v1/public/creators/452/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/299","name":"Messiah + CompleX"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/298","name":"Messiah + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/295","name":"Realm + of Kings"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered + Heroes"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/273","name":"Siege"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/294","name":"The + Thanos Imperative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/276","name":"War + of Kings"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/452/virtual_calligr?utm_campaign=apiRef&utm_source=abcd"}]},{"id":2974,"firstName":"Digital","middleName":"","lastName":"Chameleon","suffix":"","fullName":"Digital + Chameleon","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/2974","comics":{"available":42,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2974/comics","items":[{"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/47243","name":"Deadpool + (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8473","name":"Deadpool + (1997) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8484","name":"Deadpool + (1997) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8495","name":"Deadpool + (1997) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8506","name":"Deadpool + (1997) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8517","name":"Deadpool + (1997) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8528","name":"Deadpool + (1997) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8529","name":"Deadpool + (1997) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8530","name":"Deadpool + (1997) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8463","name":"Deadpool + (1997) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8464","name":"Deadpool + (1997) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8467","name":"Deadpool + (1997) #14"}],"returned":20},"series":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2974/series","items":[{"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/2005","name":"Deadpool + (1997 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7713","name":"Deadpool + Vol. 1: Secret Invasion (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23024","name":"Elektra + (1996 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/884","name":"Fantastic + Four: The Wedding Special (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3635","name":"Weapon + X (1995)"},{"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/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":14},"stories":{"available":43,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2974/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4740","name":"FANTASTIC + FOUR: THE WEDDING SPECIAL 1 (2005) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24516","name":"Paradigm + Lost","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24523","name":"Deadpool + (1997) #10","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24527","name":"Deadpool + (1997) #11","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24536","name":"Deadpool + (1997) #14","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24539","name":"Deadpool + (1997) #15","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24542","name":"Deadpool + (1997) #16","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24545","name":"Deadpool + (1997) #17","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24548","name":"Deadpool + (1997) #18","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24551","name":"Deadpool + (1997) #19","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24554","name":"Deadpool + (1997) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24580","name":"Deadpool + (1997) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24602","name":"Deadpool + (1997) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24614","name":"Deadpool + (1997) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24626","name":"Deadpool + (1997) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24639","name":"Deadpool + (1997) #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24642","name":"Deadpool + (1997) #8","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24645","name":"Deadpool + (1997) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25760","name":"Out + Of The Blue (Into The Fire) [Part 1 of 3]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25763","name":"Broken! + [Part 2 of 3]","type":"interiorStory"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/2974/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/2974/digital_chameleon?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1192,"firstName":"Ian","middleName":"","lastName":"Churchill","suffix":"","fullName":"Ian + Churchill","modified":"2011-12-09T15:23:22-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/80/4bb87fab88700","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/1192","comics":{"available":98,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/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/17758","name":"Avengers + (1996) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17759","name":"Avengers + (1996) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17760","name":"Avengers + (1996) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17761","name":"Avengers + (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20628","name":"Avengers + Annual (2001) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5844","name":"Avengers + Assemble Vol. 4 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39770","name":"Avengers: + X-Sanction (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42304","name":"Avengers: + X-Sanction (2011) #3 (Churchill Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7404","name":"Cable + (1993) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7394","name":"Cable + (1993) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7395","name":"Cable + (1993) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7396","name":"Cable + (1993) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7397","name":"Cable + (1993) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7399","name":"Cable + (1993) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7400","name":"Cable + (1993) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7401","name":"Cable + (1993) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7402","name":"Cable + (1993) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7403","name":"Cable + (1993) #29"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7405","name":"Cable + (1993) #30"}],"returned":20},"series":{"available":53,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/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/3621","name":"Avengers + (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26448","name":"Avengers + Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14703","name":"Avengers: + X-Sanction (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26627","name":"Cable + & X-Force: Onslaught! (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17723","name":"Cable + and X-Force Classic (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4059","name":"Cable + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2004","name":"Deadpool + (1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5701","name":"Deadpool + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24830","name":"Deadpool + Classic Companion Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4605","name":"Deadpool + Classic Vol. 1 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32337","name":"Deadpool + Epic Collection: The Circle Chase (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21304","name":"DEADPOOL + FIRSTS TPB (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29200","name":"Deadpool: + Hey, It''s Deadpool! Marvel Select (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1813","name":"Heroes + Reborn: Avengers (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29206","name":"HEROES + REBORN: AVENGERS TPB [NEW PRINTING] (2020)"}],"returned":20},"stories":{"available":140,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/137","name":"A + wild evil mutant comes of age, celebrating with superhuman mayhem. And in + London, the X-Men must stop Mr. Clean, a self-styled","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6608","name":"Uncanny + 391-393; New X-Men 111-113","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22608","name":"In + the Name of Love","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24207","name":"CABLE + (1993) #20","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24208","name":"A + Legion Quest Addendum: An Hour of Last Things","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24209","name":"CABLE + (1993) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24211","name":"CABLE + (1993) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24212","name":"Sanctuary","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24213","name":"CABLE + (1993) #23","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24214","name":"Family + Secrets","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24217","name":"CABLE + (1993) #25","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24218","name":"\"What + Was...What Is...\"","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24219","name":"CABLE + (1993) #26","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24221","name":"CABLE + (1993) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24222","name":"Rebels","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24223","name":"CABLE + (1993) #28","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24226","name":"Man + in the Mirror","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24227","name":"Next + Issue: X-Man...Cable...''Nuff Said!","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24229","name":"Twenty + Questions","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/24231","name":"For + Every Action...","type":"interiorStory"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/1192/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/60","name":"World + War Hulks"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/1192/ian_churchill?utm_campaign=apiRef&utm_source=abcd"}]},{"id":13348,"firstName":"Liquid!","middleName":"","lastName":"Color","suffix":"","fullName":"Liquid! + Color","modified":"2023-02-10T09:37:43-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/13348","comics":{"available":162,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13348/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50802","name":"Astonishing + X-Men (1999) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50803","name":"Astonishing + X-Men (1999) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50804","name":"Astonishing + X-Men (1999) #3"},{"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/7463","name":"Cable + (1993) #83"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7464","name":"Cable + (1993) #84"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7465","name":"Cable + (1993) #85"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51618","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37967","name":"DEADPOOL + CLASSIC VOL. 4 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103280","name":"Deadpool + Epic Collection: Mission Improbable (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4072","name":"Decimation: + X-Men the Day After (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/648","name":"Excalibur + (2004) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/727","name":"Excalibur + (2004) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/524","name":"Excalibur + (2004) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1359","name":"Excalibur + Vol. 1: Forging the Sword (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41152","name":"Fantastic + Four (1998) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15538","name":"Fantastic + Four (1998) #2"}],"returned":20},"series":{"available":44,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13348/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19016","name":"Astonishing + X-Men (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3628","name":"Blink + (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19365","name":"DAREDEVIL + EPIC COLLECTION: WIDOW''S KISS TPB (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13410","name":"DEADPOOL + CLASSIC VOL. 4 TPB (2010 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35582","name":"Deadpool + Epic Collection: Mission Improbable (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1643","name":"Decimation: + X-Men the Day After (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/740","name":"Excalibur + (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1294","name":"Excalibur + Vol. 1: Forging the Sword (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30508","name":"Fantastic + Four Annual (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30509","name":"Fantastic + Four Annual (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23002","name":"Fantastic + Four Annual (2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2445","name":"Fantastic + Four/Inhumans (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32036","name":"Fantastic + Four: Heroes Return - The Complete Collection Vol. 3 (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34247","name":"Fantastic + Four: Heroes Return - The Complete Collection Vol. 4 (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6256","name":"Generation + X (1994 - 2001)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/478","name":"Human + Torch (2003 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2572","name":"Iron + Man (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2278","name":"Marvel + Mangaverse: X-Men (2002)"}],"returned":20},"stories":{"available":230,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13348/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/628","name":"X-MEN + (2004) #165","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/629","name":"1 + of 1 - Holiday Issue","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/631","name":"1 + of 5 - Golgotha","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/633","name":"2 + of 5 - Golgotha","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/634","name":"X-MEN + (2004) #168","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/635","name":"3 + of 5 - Golgotha","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/636","name":"X-MEN + (2004) #169","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/637","name":"4 + of 5 - Golgotha","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/638","name":"X-MEN + (2004) #170","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/639","name":"5 + of 5 - Golgotha","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/641","name":"1 + of 4 - Bizarre Love Triangle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/643","name":"2 + of 4 - Bizarre Love Triangle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/645","name":"3 + of 4 - Bizarre Love Triangle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/647","name":"4 + of 4 - Bizarre Love Triangle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/649","name":"1 + of 2- Black Panther crossover","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/651","name":"2 + of 2- Black Panther crossover","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/653","name":"2 + of 3 - House of Broken Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/655","name":"1 + of 3 - House of Broken Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/657","name":"3 + of 3 - House of Broken Dreams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/659","name":"1 + of 2 - What Lorna Saw","type":"interiorStory"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13348/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/13348/liquid_color?utm_campaign=apiRef&utm_source=abcd"}]},{"id":972,"firstName":"Kevin","middleName":"","lastName":"Conrad","suffix":"","fullName":"Kevin + Conrad","modified":"2007-01-01T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/00/4bc369da41451","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/972","comics":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/creators/972/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7459","name":"Cable + (1993) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7375","name":"Cable + (1993) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7384","name":"Cable + (1993) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7385","name":"Cable + (1993) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7386","name":"Cable + (1993) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4759","name":"Decimation: + X-Men - The 198 (Trade Paperback)"},{"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/2244","name":"Hulk: + Destruction (2005) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2352","name":"Hulk: + Destruction (2005) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/53194","name":"MARVEL + FIRSTS: THE 1990S OMNIBUS HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12182","name":"X-Factor + (1986) #106"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/98376","name":"X-Factor + Epic Collection: Afterlives (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17992","name":"X-Force + (1991) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18001","name":"X-Force + (1991) #36"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18003","name":"X-Force + (1991) #38"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18004","name":"X-Force + (1991) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18006","name":"X-Force + (1991) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18007","name":"X-Force + (1991) #41"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18008","name":"X-Force + (1991) #42"}],"returned":20},"series":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/creators/972/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1649","name":"Decimation: + X-Men - The 198 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2578","name":"Gambit + and the X-Ternals (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/924","name":"Hulk: + Destruction (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19920","name":"MARVEL + FIRSTS: THE 1990S OMNIBUS HC (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33936","name":"X-Factor + Epic Collection: Afterlives (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3633","name":"X-Force + (1991 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19067","name":"X-Force + Annual (1992 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men + Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3637","name":"X-Men + Unlimited (1993 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31871","name":"X-MEN: + AGE OF APOCALYPSE OMNIBUS HC BILLY TAN COVER [NEW PRINTING 2] (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18033","name":"X-MEN: + PHALANX COVENANT HC (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/985","name":"X-Men: + The 198 (2006)"},{"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)"}],"returned":18},"stories":{"available":37,"collectionURI":"http://gateway.marvel.com/v1/public/creators/972/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4941","name":"1 + of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4943","name":"2 + of 4 - 4XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5547","name":"2 + of 5 XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5549","name":"3 + of 5 XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5551","name":"4 + of 5 XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22102","name":"X-Teams + Unite","type":"pinup"},{"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/38263","name":"The + Axe Falls","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38280","name":"Cover + #38280","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38284","name":"Phalanx + Covenant: Life Signs Part 2 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38285","name":"Phalanx + Covenant: Life Signs Part 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38286","name":"Letting + Go ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38287","name":"Letting + Go","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38293","name":"Cover + #38293 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38294","name":"The + Fun House","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38295","name":"Cover + #38295 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38296","name":"A + Lie of the Mind","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38297","name":"Cover + #38297","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38298","name":"Teapot + in a Tempest","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/38630","name":"X-Ternals","type":"pinup"}],"returned":20},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/creators/972/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/972/kevin_conrad?utm_campaign=apiRef&utm_source=abcd"}]},{"id":3572,"firstName":"Kelly","middleName":"","lastName":"Corvese","suffix":"","fullName":"Kelly + Corvese","modified":"2013-01-24T17:45:26-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/30/4bc47250100db","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/3572","comics":{"available":38,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3572/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/82259","name":"Adventures + Of The X-Men: Tooth & Claw (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8581","name":"Excalibur + (1988) #116"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8582","name":"Excalibur + (1988) #117"},{"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/16877","name":"Incredible + Hulk Annual (1976) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1268","name":"MARVEL + AGE: SPIDER-GIRL VOL. 1: LEGACY DIGEST (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10156","name":"Marvel + Comics Presents (1988) #73"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10159","name":"Marvel + Comics Presents (1988) #76"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10160","name":"Marvel + Comics Presents (1988) #77"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10164","name":"Marvel + Comics Presents (1988) #80"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10165","name":"Marvel + Comics Presents (1988) #81"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22241","name":"Punisher + War Journal (1988) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18913","name":"Quasar + (1989) #26"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/18914","name":"Quasar + (1989) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13325","name":"Spider-Girl + (1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14175","name":"Wolverine + (1988) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23890","name":"Wolverine: + Weapon X (Trade Paperback)"}],"returned":20},"series":{"available":19,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3572/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/29181","name":"Adventures + Of The X-Men: Tooth & Claw (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2011","name":"Excalibur + (1988 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3737","name":"Factor + X (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2983","name":"Incredible + Hulk Annual (1976 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/322","name":"MARVEL + AGE: SPIDER-GIRL VOL. 1: LEGACY DIGEST (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel + Comics Presents (1988 - 1995)"},{"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/417","name":"Spider-Girl + (1998 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7057","name":"Wolverine: + Weapon X (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1910","name":"Wolverine: + Weapon X Premiere (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2098","name":"X-Factor + (1986 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3643","name":"X-Man + (1995 - 2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3640","name":"X-Men + Chronicles (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3637","name":"X-Men + Unlimited (1993 - 2003)"},{"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":19},"stories":{"available":105,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3572/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22100","name":"Phalanx + Covenant: Life Signs Part 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22147","name":"Onslaught + Impact 2: The Beast or Not the Beast--That Is the Question","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22377","name":"Can''t + Go Around Him...","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22378","name":"A + Green and Tender Place","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22379","name":"Cover + #22379","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22380","name":"Underpinnings","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22381","name":"Fatal + Attractions: Out of the Light and Into the Shadows","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22382","name":"The + Man Who Wasn''t There","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22383","name":"Behold--The + Son of Magneto","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22441","name":"Cover + #22441","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22443","name":"Cover + #22443","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23535","name":"Cover + #23535","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23553","name":"Weapon + X","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23554","name":"Weapon + X: Chapter Four","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23555","name":"The + Bush of Ghosts Part 9: The Living and the Dead","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23556","name":"The + Deadliest Game","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23557","name":"Lonely + at the Top","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23558","name":"Back + Cover","type":"backcovers"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23559","name":"Weapon + X","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23560","name":"Weapon + X: Chapter Five","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/3572/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/249","name":"Fatal + Attractions"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/3572/kelly_corvese?utm_campaign=apiRef&utm_source=abcd"}]},{"id":4101,"firstName":"Electric","middleName":"","lastName":"Crayon","suffix":"","fullName":"Electric + Crayon","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/4101","comics":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4101/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16079","name":"Gambit + and the X-Ternals (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20038","name":"Generation + Next (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20039","name":"Generation + Next (1995) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20040","name":"Generation + Next (1995) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20041","name":"Generation + Next (1995) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14038","name":"Wolverine + (1988) #100"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12386","name":"X-Men: + Alpha (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12370","name":"X-Men: + Omega (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12371","name":"X-Men: + Prime (1995) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2539","name":"X-Men: + The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4090","name":"X-Men: + The Complete Age of Apocalypse Epic Book 3 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5369","name":"X-Men: + The Complete Age of Apocalypse Epic Book 4 (Trade Paperback)"}],"returned":12},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4101/series","items":[{"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/2262","name":"Wolverine + (1988 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2104","name":"X-Men: + Alpha (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2101","name":"X-Men: + Omega (1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2102","name":"X-Men: + Prime (1995)"},{"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":9},"stories":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4101/stories","items":[{"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/26281","name":"A + Beginning","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28565","name":"Cover + #28565","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/28566","name":"Furnace + Of His Brain, Anvil Of His Heart","type":"interiorStory"},{"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/42919","name":"From + The Top","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42922","name":"Hither + Comes the Suger Man!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42925","name":"It + Only Hurts When I Sing.","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/42928","name":"Bye","type":""}],"returned":10},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/4101/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/creators/4101/electric_crayon?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_events.yml b/spec/vcr/Harkness_EventResource/gets_events.yml new file mode 100644 index 0000000..7de2d79 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_events.yml @@ -0,0 +1,1411 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - ad8c5e3f751a477695674fc1ff088115f697bf1a + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 00:41:29 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"ad8c5e3f751a477695674fc1ff088115f697bf1a","data":{"offset":0,"limit":20,"total":74,"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Acts_of_Vengeance!?utm_campaign=apiRef&utm_source=abcd"}],"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":102,"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":"Danilo + Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2043","name":"Eliot + Brown","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich + Buckler","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"penciler"},{"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/452","name":"Virtual + Calligr","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/954","name":"Gerry + Conway","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/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/105","name":"Sal + Buscema","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3415","name":"John + Calimee","role":"penciller (cover)"}],"returned":20},"characters":{"available":108,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009435","name":"Alicia + Masters"},{"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/1011456","name":"Balder"},{"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 + (Abner Jenkins)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009329","name":"Ben + Grimm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black + Knight (Sir Percy of Scandia)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black + Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom + Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009167","name":"Bruce + Banner"},{"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/1011027","name":"Captain + Universe"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009234","name":"Chameleon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009239","name":"Clea"}],"returned":20},"stories":{"available":161,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12960","name":"Fantastic + Four (1961) #334","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":"Fantastic + Four (1961) #335","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":"Fantastic + Four (1961) #336","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":"Amazing + Spider-Man (1963) #326","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14057","name":"Amazing + Spider-Man (1963) #326","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14058","name":"Amazing + Spider-Man (1963) #327","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":"Amazing + Spider-Man (1963) #328","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":"Amazing + Spider-Man (1963) #329","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14063","name":"Amazing + Spider-Man (1963) #329","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14916","name":"AVENGERS + (1963) #311","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","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","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14921","name":"Thieves + Honor","type":"interiorStory"}],"returned":20},"comics":{"available":53,"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/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/17774","name":"Avengers + Annual (1967) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17795","name":"West + Coast Avengers (1985) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17796","name":"West + Coast Avengers (1985) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17797","name":"West + Coast Avengers (1985) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17695","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964) #275"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8269","name":"Daredevil + (1964) #276"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20170","name":"Doctor + Strange, Sorcerer Supreme (1988) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20171","name":"Doctor + Strange, Sorcerer Supreme (1988) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20172","name":"Doctor + Strange, Sorcerer Supreme (1988) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13155","name":"Fantastic + Four (1961) #334"}],"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/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/3462","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964 - 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/1987","name":"The + Amazing Spider-Man (1963 - 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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3630","name":"West + Coast Avengers (1985 - 1994)"}],"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Apocalypse?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-06-13T11:42:39-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":111,"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","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/13348","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/11063","name":"Terry + Kevin 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/3572","name":"Kelly + Corvese","role":"editor"}],"returned":20},"characters":{"available":91,"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/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009210","name":"Brute"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","name":"Callisto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"}],"returned":20},"stories":{"available":197,"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":"X-Men: + Alpha (1994) #1","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 Bloodlines (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales + from the Age of Apocalyspse: By the Light (1996)"},{"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 (1995)"},{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Ultron?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-03-25T15:39:52-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":30,"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/357","name":"Jim + 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/208","name":"Paco + Medina","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":"Gerry + Duggan","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/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13021","name":"David + Curiel","role":"colorist"},{"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"}],"returned":20},"characters":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/events/314/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009155","name":"Ant-Man + (Hank Pym)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"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/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009384","name":"Kang"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009215","name":"Luke + Cage"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009452","name":"Moon + Knight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009583","name":"She-Hulk + (Jennifer Walters)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009685","name":"Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009697","name":"Vision"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":15},"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 (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":7,"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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17370","name":"Fearless + Defenders (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18248","name":"Hunger + (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17554","name":"Superior + Spider-Man (2013 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17900","name":"Ultron + (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13910","name":"Wolverine + & the X-Men (2011 - 2014)"}],"returned":7},"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=abcd"}],"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":39,"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/3736","name":"Chuck + Kim","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy + Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9967","name":"Jim + Mccann","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/412","name":"Carlo + Barberi","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/692","name":"Pat + Davidson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9224","name":"Paul + Davidson","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4150","name":"Paco + Diaz","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/616","name":"Jay + Leisten","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7183","name":"Allen + Martinez","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/428","name":"Antonio + Fabela","role":"colorist"},{"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/11737","name":"Daniel + Ketchum","role":"editor"}],"returned":20},"characters":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/events/303/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009158","name":"Arcade"},{"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/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009536","name":"Cecilia + Reyes"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009233","name":"Chamber"},{"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/1009277","name":"Domino"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009310","name":"Emma + Frost"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009229","name":"Frank + Castle"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1012478","name":"Frenzy"},{"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/1009337","name":"Havok"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010678","name":"Hellion"}],"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 (2008) #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":"X-MEN + LEGACY (2008) #248","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":"X-MEN + LEGACY (2008) #249","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 (2008) #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 (2009) #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":"NEW + MUTANTS (2009) #24","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":"Age + of X: Alpha (2010) #1","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":"Age + of X: Universe (2011) #2","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/13603","name":"Age + of X: Alpha (2010)"},{"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 - 2012)"},{"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":329,"title":"All-New All-Different Marvel","description":"This + fall, prepare for an all-new, all-different Marvel Universe to begin!","resourceURI":"http://gateway.marvel.com/v1/public/events/329","urls":[{"type":"detail","url":"http://marvel.com/comics/events/329/all-new_all-different_marvel?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2015-10-01T17:37:36-0400","start":null,"end":null,"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/f0/55bfa91b34ac4","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/329/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/329/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/329/stories","items":[],"returned":0},"comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/329/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/329/series","items":[],"returned":0},"next":null,"previous":null},{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Annihilation?utm_campaign=apiRef&utm_source=abcd"}],"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":23,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/937","name":"Renato + Arlem","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":"Michael + Mckone","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1106","name":"Gregory + Titus","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/361","name":"Cory + Petit","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12980","name":"Vc + Cory Petit","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/500","name":"Christopher + Sotomayor","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/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/8701","name":"Javier + Grillo-Marxuach","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/888","name":"Michael + Hoskin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/643","name":"Stuart + Moore","role":"writer"}],"returned":20},"characters":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/events/229/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011136","name":"Air-Walker + (Gabriel Lan)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009154","name":"Annihilus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011137","name":"Baroness + S''Bak"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009195","name":"Blastaar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011139","name":"Cammi"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011142","name":"Devos"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010735","name":"Drax"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009305","name":"Firelord"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011177","name":"Forgotten + One"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009312","name":"Galactus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010763","name":"Gamora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011144","name":"Glorian"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011147","name":"Korath"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011145","name":"Lord + Hawal"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009451","name":"Moondragon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010365","name":"Nebula"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009477","name":"Nova"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010734","name":"Peter + Quill"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011151","name":"Praxagora"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011152","name":"Preak"}],"returned":20},"stories":{"available":69,"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":32,"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 HC (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16667","name":"ANNIHILATION + BOOK 2 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6292","name":"ANNIHILATION + BOOK 2 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15907","name":"ANNIHILATION + BOOK 3 TPB (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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4109","name":"Annihilation: + Ronan (2006) #1"}],"returned":20},"series":{"available":14,"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/1924","name":"Annihilation + Book 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2973","name":"ANNIHILATION + BOOK 1 HC (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 TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2436","name":"ANNIHILATION + BOOK 3 TPB (2011)"},{"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":14},"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=abcd"}],"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":32,"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/8701","name":"Javier + Grillo-Marxuach","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":"Top + Cow 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/189","name":"Kyle + Hotz","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellington + 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/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":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8635","name":"Vc + Randy Gentile","role":"letterer"}],"returned":20},"characters":{"available":18,"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/1011299","name":"Guardians + of the Galaxy"},{"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"},{"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":18},"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/22404","name":"ANNIHILATION: + CONQUEST BOOK 1 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17688","name":"ANNIHILATION: + CONQUEST BOOK 1 TPB (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 TPB (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6619","name":"ANNIHILATION: + CONQUEST BOOK 2 HC (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5239","name":"ANNIHILATION: + CONQUEST BOOK 2 TPB (2009 - 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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Armor_Wars?utm_campaign=apiRef&utm_source=abcd"}],"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":9,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/180","name":"Kieron + Dwyer","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1247","name":"Bob + Layton","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/259","name":"Mark + Gruenwald","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2784","name":"David + Michelinie","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/435","name":"Al + Milgrom","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1933","name":"Jack + 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/1832","name":"Bob + Sharen","role":"colorist"}],"returned":9},"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 + (Abner Jenkins)"},{"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":37,"collectionURI":"http://gateway.marvel.com/v1/public/events/231/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17945","name":"CAPTAIN + AMERICA (1968) #340","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":"IRON + MAN (1968) #230","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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Atlantis_Attacks?utm_campaign=apiRef&utm_source=abcd"}],"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":87,"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/180","name":"Kieron + Dwyer","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11063","name":"Terry + Kevin 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/2376","name":"James + Brock","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6257","name":"Ernie + Chan","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3456","name":"Gavin + Curtis","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1898","name":"Mike + Decarlo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1172","name":"Tony + Dezuniga","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1279","name":"Jon + Bogdanove","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich + Buckler","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/13570","name":"Amanda + Conner","role":"penciler"},{"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"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/954","name":"Gerry + Conway","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"writer"}],"returned":20},"characters":{"available":48,"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":82,"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":"West + Coast Avengers (1985) #52"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17842","name":"West + Coast Avengers Annual (1986) #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 - 2018)"},{"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/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/3630","name":"West + Coast Avengers (1985 - 1994)"},{"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 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men + Annual (1970 - 1994)"}],"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Avengers_Disassembled?utm_campaign=apiRef&utm_source=abcd"}],"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/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/314","name":"Neal + Adams","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/506","name":"Joe + Bennett","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/438","name":"Karl + Kesel","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim + Cheung","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/248","name":"David + Finch","role":"penciler"},{"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/5106","name":"Scot + George Eaton","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/460","name":"Tony + Harris","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12581","name":"Chris + Eliopoulos","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8635","name":"Vc + Randy Gentile","role":"letterer"}],"returned":20},"characters":{"available":18,"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/1009539","name":"Franklin + Richards"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009312","name":"Galactus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009356","name":"Human + Torch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009359","name":"Hydra"},{"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/1009459","name":"Mr. + Fantastic"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009562","name":"Scarlet + Witch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009662","name":"Thing"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009664","name":"Thor"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009525","name":"Valeria + Richards"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009707","name":"Wasp"}],"returned":18},"stories":{"available":79,"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":"THOR + (1998) #83","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":"THOR + (1998) #82","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":"THOR + (1998) #80","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":"THOR + (1998) #81","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":"THOR + (1998) #84","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":"THOR + (1998) #85","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":"Fantastic + Four (1998) #517","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":"Fantastic + Four (1998) #518","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":"Fantastic + Four (1998) #519","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":39,"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 TPB (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 HC (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/1448","name":"Excalibur + (2004) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/748","name":"Fantastic + Four (1998) #517"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/826","name":"Fantastic + Four (1998) #518"}],"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 TPB (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 HC (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":322,"title":"Avengers NOW!","description":"Sam Wilson, formerly + the Falcon, becomes the All-New Captain America! When Thor proves unworthy, + a female God of Thunder rises up! Tony Stark declares himself the Superior + Iron Man! Earth''s Mightiest Heroes undergo major changes across the board!","resourceURI":"http://gateway.marvel.com/v1/public/events/322","urls":[{"type":"detail","url":"http://marvel.com/comics/events/322/avengers_now?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2015-08-03T12:17:04-0400","start":"2037-01-01 + 01:00:00","end":"2037-01-01 01:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/c0/53fe0732c1f02","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/322/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/322/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/322/stories","items":[],"returned":0},"comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/322/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/322/series","items":[],"returned":0},"next":null,"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"}},{"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=abcd"}],"modified":"2020-02-28T14:25:37-0500","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":77,"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/2133","name":"Tom + Brevoort","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/367","name":"Ed + Brubaker","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel + Acuna","role":"penciller (cover)"},{"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/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/185","name":"Frank + Cho","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/13215","name":"Rain + Beredo","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13309","name":"Elizabeth + Dismang Breitweiser","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11798","name":"Matteo + Buffagni","role":"Penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/452","name":"Virtual + Calligr","role":"Letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"}],"returned":20},"characters":{"available":51,"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/1009208","name":"Brood"},{"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/1009317","name":"Genesis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009320","name":"Giant + Man"},{"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/1011428","name":"Hope + Summers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009362","name":"Iceman"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009367","name":"Iron + Fist (Danny Rand)"}],"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":"WOLVERINE + & THE X-MEN (2011) #11","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":"AVENGERS: + X-SANCTION (2011) #4","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":"WOLVERINE + & THE X-MEN (2011) #13","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 - 2014)"},{"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":320,"title":"Axis","description":"The Red Skull has taken + over Genosha and stands poised to plunge the planet into World War Hate! The + Avengers and X-Men must team-up with each other and some of their greatest + foes, but along the way, Inversion changes everything! Anything can happen + in this nine-issue event written by Rick Remender with the art of Jim Cheung, + Terry Dodson, Adam Kubert and Leinil Yu!","resourceURI":"http://gateway.marvel.com/v1/public/events/320","urls":[{"type":"detail","url":"http://marvel.com/comics/events/320/axis?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Axis?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-08-22T15:20:00-0400","start":"2014-10-08 + 00:01:00","end":"2014-12-17 11:59:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/53f77ba25db97","extension":"jpg"},"creators":{"available":63,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1004","name":"Daniel + Acuna","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9799","name":"David + Baldeon","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/412","name":"Carlo + Barberi","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11748","name":"Marco + Checchetto","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12448","name":"Yildiray + Cinar","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12823","name":"Jorge + Coelho","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman + Andrasofszky","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11575","name":"Kris + Anka","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9018","name":"Mahmud + Asrar","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/357","name":"Jim + Cheung","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1052","name":"Mike + Choi","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7639","name":"John + Barber","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12459","name":"Frank + Barbiere","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10023","name":"Cullen + Bunn","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/808","name":"Howard + Chaykin","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/121","name":"Peter + David","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2133","name":"Tom + Brevoort","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"}],"returned":20},"characters":{"available":20,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/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/1009220","name":"Captain + America"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009227","name":"Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009268","name":"Deadpool"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010671","name":"Enchantress + (Amora)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009297","name":"Falcon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009306","name":"Firestar"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010766","name":"Jack + O'' Lantern"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009407","name":"Loki"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009465","name":"Mystique"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017078","name":"Nova + (Sam Alexander)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009524","name":"Quicksilver"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009535","name":"Red + Skull"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009546","name":"Rogue"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009562","name":"Scarlet + Witch"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":20},"stories":{"available":98,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107893","name":"cover + from Inhumans (2013) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107894","name":"story + from Inhumans (2013) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107895","name":"cover + from Inhumans (2013) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108193","name":"cover + from All-New X-Factor (2013) #15","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108194","name":"story + from All-New X-Factor (2013) #15","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108195","name":"cover + from All-New X-Factor (2013) #16","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108196","name":"story + from All-New X-Factor (2013) #16","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108197","name":"cover + from All-New X-Factor (2013) #17","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108198","name":"story + from All-New X-Factor (2013) #17","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108199","name":"cover + from All-New X-Factor (2013) #18","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108200","name":"story + from All-New X-Factor (2013) #18","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109145","name":"cover + from Loki: Agent of Asgard (2013) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109146","name":"story + from Loki: Agent of Asgard (2013) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109277","name":"CAPTAIN + AMERICA (2012) #24","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109278","name":"story + from Captain America (2012) #24","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109905","name":"cover + from Wolverine & the X-Men (2014) #12","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109906","name":"story + from Wolverine & the X-Men (2014) #12","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109933","name":"cover + from X-Men Legacy (2014) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109934","name":"story + from X-Men Legacy (2014) #9","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109935","name":"cover + from X-Men Legacy (2014) #10","type":"cover"}],"returned":20},"comics":{"available":49,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47976","name":"All-New + X-Factor (2014) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47977","name":"All-New + X-Factor (2014) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47978","name":"All-New + X-Factor (2014) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47979","name":"All-New + X-Factor (2014) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51147","name":"Amazing + X-Men (2013) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50601","name":"Avengers + & X-Men: Axis (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50602","name":"Avengers + & X-Men: Axis (2014) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50603","name":"Avengers + & X-Men: Axis (2014) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50604","name":"Avengers + & X-Men: Axis (2014) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50605","name":"Avengers + & X-Men: Axis (2014) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50606","name":"Avengers + & X-Men: Axis (2014) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50607","name":"Avengers + & X-Men: Axis (2014) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51168","name":"Avengers + & X-Men: Axis (2014) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51063","name":"Avengers + World (2014) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51444","name":"Avengers + World (2014) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50980","name":"Axis: + Carnage (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51064","name":"Axis: + Carnage (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50976","name":"Axis: + Hobgoblin (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51055","name":"Axis: + Hobgoblin (2014) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51155","name":"Axis: + Hobgoblin (2014) #3"}],"returned":20},"series":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/events/320/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18136","name":"All-New + X-Factor (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18142","name":"Amazing + X-Men (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18904","name":"Avengers + & X-Men: Axis (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18398","name":"Avengers + World (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19085","name":"Axis: + Carnage (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19084","name":"Axis: + Hobgoblin (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19086","name":"Axis: + Revolutions (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16516","name":"Captain + America (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19160","name":"Captain + America & the Mighty Avengers (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16542","name":"Deadpool + (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18065","name":"Inhuman + (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18340","name":"Loki: + Agent of Asgard (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18407","name":"Magneto + (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16411","name":"Nova + (2013 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19164","name":"Superior + Iron Man (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16414","name":"Uncanny + Avengers (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18406","name":"Wolverine + & the X-Men (2014)"}],"returned":17},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/321","name":"Spider-Verse"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"}},{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blood_and_Thunder?utm_campaign=apiRef&utm_source=abcd"}],"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":16,"collectionURI":"http://gateway.marvel.com/v1/public/events/235/creators","items":[{"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/3864","name":"Pat + Redding","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2082","name":"Keith + Williams","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/1936","name":"Gina + Going","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/3782","name":"Kris + Renkewitz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/928","name":"Andy + Smith","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1933","name":"Jack + Morelli","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/146","name":"Jim + Starlin","role":"writer"}],"returned":16},"characters":{"available":13,"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/1009282","name":"Doctor + Strange"},{"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 + (Samantha Parrington)"}],"returned":13},"stories":{"available":33,"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=abcd"}],"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":57,"collectionURI":"http://gateway.marvel.com/v1/public/events/296/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12401","name":"Sotocolor","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/598","name":"Brad + Anderson","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/428","name":"Antonio + Fabela","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11579","name":"Sunny + Gho","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4266","name":"Ian + Hannin","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4992","name":"Simon + Bowland","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5037","name":"Ed + Dukeshire","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7351","name":"Henry + Fletcher","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/236","name":"Tommy + Lee Edwards","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13251","name":"Salva + 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/13473","name":"Brian + Ching","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10288","name":"Marko + Djurdjevic","role":"penciler"},{"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/13183","name":"J.M. + DeMatteis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13548","name":"Danny + Miki - Crimelab","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/926","name":"Cory + Hamscher","role":"inker"}],"returned":20},"characters":{"available":54,"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/1010719","name":"Daimon + Hellstrom"},{"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/1012378","name":"Executioner + (Skurge)"},{"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/1009330","name":"Guardian"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009338","name":"Hawkeye"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011482","name":"Hela"}],"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":"INCREDIBLE + HULKS (2009) #618","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/34517","name":"Chaos + War (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36576","name":"Chaos + War (Trade Paperback)"},{"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 TPB (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 (2010) #618"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34050","name":"Incredible + Hulks (2010) #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)"},{"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 TPB (2010)"},{"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)"},{"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 (2010 - 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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Civil_War?utm_campaign=apiRef&utm_source=abcd"}],"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":138,"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12401","name":"Sotocolor","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/598","name":"Brad + Anderson","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/191","name":"Kaare + Andrews","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11543","name":"Dan + Brown","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11401","name":"Various","role":"penciller + (cover)"},{"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/13661","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/4014","name":"Axel + Alonso","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11854","name":"Nicole + Boose","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12741","name":"Ramón + F. 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/13215","name":"Rain + Beredo","role":"colorist (cover)"}],"returned":20},"characters":{"available":101,"collectionURI":"http://gateway.marvel.com/v1/public/events/238/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009148","name":"Absorbing + Man"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009740","name":"Arnim + Zola"},{"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/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/1009198","name":"Blizzard"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010371","name":"Boomerang"},{"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/1017317","name":"Cable + (Deadpool)"},{"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/1009234","name":"Chameleon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010754","name":"Chase + Stein"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010676","name":"Colleen + Wing"}],"returned":20},"stories":{"available":321,"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":"Amazing + Spider-Man (1999) #529","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1184","name":"1 + of 5 - Identity Thief","type":"interiorStory"}],"returned":20},"comics":{"available":140,"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/6208","name":"Civil + War (2006 - Present)"},{"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/1101","name":"Civil + War Files (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6248","name":"CIVIL + WAR HC [DM ONLY] (2008 - Present)"},{"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 Report (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/10102","name":"Civil + War: Fantastic Four (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1898","name":"Civil + War: Fantastic Four (2007)"},{"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":330,"title":"Civil War II","description":"The drums of war beat + for the Marvel Universe this June, as Civil War II #1 arrives with a double-size + issue! Blockbuster creators Brian Michael Bendis, David Marquez, and Justin + Ponsor bring readers a Marvel Universe divided—with Iron Man and Captain Marvel + leading opposing sides! A new power has emerged, one that can predict the + future. Will the heroes fight to protect the future or change the future? + Choose your side!","resourceURI":"http://gateway.marvel.com/v1/public/events/330","urls":[{"type":"detail","url":"http://marvel.com/comics/events/330/civil_war_ii?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2016-05-09T12:48:25-0400","start":null,"end":null,"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/c0/56d082ff38722","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/330/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/330/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/330/stories","items":[],"returned":0},"comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/330/comics","items":[],"returned":0},"series":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/events/330/series","items":[],"returned":0},"next":null,"previous":null},{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Crossing?utm_campaign=apiRef&utm_source=abcd"}],"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":33,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1107","name":"Dan + Abnett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1162","name":"Terry + Kavanagh","role":"writer"},{"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/1929","name":"Ian + Laughlin","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2298","name":"Ariane + Lenshoek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13759","name":"James + Calafiore","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2490","name":"Sergio + Cariello","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/357","name":"Jim + Cheung","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13567","name":"Mike + Deodato Jr.","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2306","name":"Yancey + Labat","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3074","name":"Ralph + Cabrera","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2291","name":"Hector + Collazo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3761","name":"Rey + Garcia","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1887","name":"Janice + Chiang","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1746","name":"John + Costanza","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13261","name":"Phil + Felix","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1284","name":"Michael + Higgins","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1967","name":"Brad + K. Joyce","role":"letterer"}],"returned":20},"characters":{"available":12,"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/1011037","name":"Deathcry"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009307","name":"Force + Works"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1012571","name":"Gilgamesh"},{"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/1010867","name":"Magdalene"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011026","name":"Mantis"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010367","name":"Masque"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009672","name":"Titanium + Man (Topolov)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009707","name":"Wasp"}],"returned":12},"stories":{"available":34,"collectionURI":"http://gateway.marvel.com/v1/public/events/239/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15108","name":"Avengers + (1963) #390","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":"Avengers + (1963) #391","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":"Avengers + (1963) #392","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":"Avengers + (1963) #394","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":"Avengers + (1963) #395","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/19620","name":"[untitled]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/19621","name":"Shadows + Call","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"}],"returned":20},"comics":{"available":13,"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/9571","name":"Iron + Man (1968) #319"},{"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":13},"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=abcd"}],"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":313,"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/9046","name":"Mario + Alberti","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4994","name":"Kalman + Andrasofszky","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/1004","name":"Daniel + Acuna","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciller (cover)"},{"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/4014","name":"Axel + Alonso","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8000","name":"Alejandro + Arbona","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5039","name":"Wellington + 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/232","name":"Chris + Bachalo","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10271","name":"Sergio + Arino","role":"artist"}],"returned":20},"characters":{"available":150,"collectionURI":"http://gateway.marvel.com/v1/public/events/318/characters","items":[{"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/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009164","name":"Avalanche"},{"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/1009175","name":"Beast"},{"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/1009733","name":"Charles + Xavier"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1012065","name":"Chthon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010809","name":"Clint + Barton"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"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"}],"returned":20},"stories":{"available":405,"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":"Invincible + Iron Man (2008) #8","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":"SECRET + INVASION: DARK REIGN (2008) #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":"WAR + MACHINE (2008) #1","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":199,"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/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"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24167","name":"Avengers: + The Initiative (2007) #24"}],"returned":20},"series":{"available":50,"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 (2009 - 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/7679","name":"Dark + Reign Files (2009)"},{"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 - Spymaster (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/7206","name":"Dark + Reign: Skrull Kill Krew (2009)"},{"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)"}],"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Days_of_Future_Present?utm_campaign=apiRef&utm_source=abcd"}],"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":33,"collectionURI":"http://gateway.marvel.com/v1/public/events/240/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12208","name":"Arthur + Adams","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1279","name":"Jon + Bogdanove","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2376","name":"James + Brock","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/379","name":"Greg + Capullo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2697","name":"Butch + Guice","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3104","name":"Mark + Heike","role":"penciler"},{"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/13131","name":"Ken + Lopez","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2386","name":"Harry + Candelario","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1326","name":"Dan + Green","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6868","name":"Geof + Isherwood","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2119","name":"Larry + Mahlstedt","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/558","name":"Mark + Mckenna","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6901","name":"Len + Kaminski","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13897","name":"Suzanne + Del''orto","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/571","name":"Rob + Liefeld","role":"penciller (cover)"}],"returned":20},"characters":{"available":31,"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/1009327","name":"Jean + Grey"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009381","name":"Jubilee"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009408","name":"Longshot"}],"returned":20},"stories":{"available":25,"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 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2100","name":"X-Men + Annual (1970 - 1994)"}],"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!"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_EventResource/gets_events_with_params.yml b/spec/vcr/Harkness_EventResource/gets_events_with_params.yml new file mode 100644 index 0000000..beb1d24 --- /dev/null +++ b/spec/vcr/Harkness_EventResource/gets_events_with_params.yml @@ -0,0 +1,131 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&nameStartsWith=Age&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 4cba51132c2bba8ad58245281897327f08b7ea0d + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 00:41:29 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"4cba51132c2bba8ad58245281897327f08b7ea0d","data":{"offset":0,"limit":1,"total":3,"count":1,"results":[{"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Age_of_Apocalypse?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-06-13T11:42:39-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":111,"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/452","name":"Virtual + Calligr","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5898","name":"Derek","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1945","name":"Mark + Bernardo","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/13348","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/11063","name":"Terry + Kevin 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/3572","name":"Kelly + Corvese","role":"editor"}],"returned":20},"characters":{"available":91,"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/1010903","name":"Abyss + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009153","name":"Angel + (Warren Worthington III)"},{"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/1009210","name":"Brute"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009214","name":"Cable"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010912","name":"Callisto + (Age of Apocalypse)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009219","name":"Cannonball"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009223","name":"Captain + Britain"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009261","name":"Carol + Danvers"}],"returned":20},"stories":{"available":197,"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":"X-Men: + Alpha (1994) #1","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 Bloodlines (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3675","name":"Tales + from the Age of Apocalyspse: By the Light (1996)"},{"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 (1995)"},{"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"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_by_ID.yml new file mode 100644 index 0000000..7700060 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_by_ID.yml @@ -0,0 +1,72 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/19244?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - ec1402081a14d15d31d078d0be9614240da337ce + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:07:42 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"ec1402081a14d15d31d078d0be9614240da337ce","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":19244,"title":"1602 + Witch Hunter Angela (2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19244","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19244/1602_witch_hunter_angela_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2015,"rating":"Rated + T+","type":"limited","modified":"2017-10-26T14:30:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/60/553a60a66f2f6","extension":"jpg"},"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12441","name":"Marguerite + Bennett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8901","name":"Kieron + Gillen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10405","name":"John + Tyler Christopher","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13055","name":"Richard + Isanove","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12756","name":"Irene + Koh","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10785","name":"Stephanie + Hans","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1063","name":"Frazer + Irving","role":"artist"}],"returned":7},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017574","name":"Angela + (Aldrif Odinsdottir)"}],"returned":1},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113973","name":"cover + from 1602 Witch Hunter Angela (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113974","name":"story + from 1602 Witch Hunter Angela (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113975","name":"cover + from 1602 Witch Hunter Angela (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113976","name":"story + from 1602 Witch Hunter Angela (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113977","name":"cover + from 1602 Witch Hunter Angela (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113978","name":"story + from 1602 Witch Hunter Angela (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113979","name":"cover + from 1602 Witch Hunter Angela (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113980","name":"story + from 1602 Witch Hunter Angela (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120677","name":"cover + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120678","name":"story + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121219","name":"cover + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST MISTRESS OF GWENG FU VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121220","name":"story + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST MISTRESS OF GWENG FU VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121474","name":"cover + from 1602 Witch Hunter Angela (2015) #2 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121475","name":"story + from 1602 Witch Hunter Angela (2015) #2 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123459","name":"cover + from 1602 Witch Hunter Angela (2015) #3 (IRVING VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123460","name":"story + from 1602 Witch Hunter Angela (2015) #3 (IRVING VARIANT)","type":"interiorStory"}],"returned":16},"comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51198","name":"1602 + Witch Hunter Angela (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55028","name":"1602 + Witch Hunter Angela (2015) #1 (Christopher Gwengela Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54728","name":"1602 + Witch Hunter Angela (2015) #1 (Isanove Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51199","name":"1602 + Witch Hunter Angela (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55191","name":"1602 + Witch Hunter Angela (2015) #2 (Koh Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51200","name":"1602 + Witch Hunter Angela (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56248","name":"1602 + Witch Hunter Angela (2015) #3 (Irving Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51201","name":"1602 + Witch Hunter Angela (2015) #4"}],"returned":8},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/events","items":[],"returned":0},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_characters_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_characters_by_ID.yml new file mode 100644 index 0000000..af24236 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_characters_by_ID.yml @@ -0,0 +1,1167 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/454/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 8c8c3c19c6dc00ac5e6954aaabeeb0285761dbf4 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:07:10 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"8c8c3c19c6dc00ac5e6954aaabeeb0285761dbf4","data":{"offset":0,"limit":20,"total":147,"count":20,"results":[{"id":1009154,"name":"Annihilus","description":"","modified":"2013-11-20T17:06:36-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/f0/528d31f20a2f6","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009154","comics":{"available":66,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009154/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55364","name":"All-New, + All-Different Avengers (2015) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4788","name":"Annihilation + (2006) #1"},{"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/5795","name":"Annihilation + (2006) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4473","name":"Annihilation: + Nova (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4218","name":"Annihilation: + Silver Surfer (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4315","name":"Annihilation: + Silver Surfer (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66602","name":"Annihilation: + The Complete Collection Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4822","name":"Annihilation: + The Nova Corps (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2055","name":"Essential + Fantastic Four Vol. 4 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15537","name":"Fantastic + Four (1998) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15561","name":"Fantastic + Four (1998) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95800","name":"Fantastic + Four (2018) #41"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15563","name":"Fantastic + Four (1998) #42"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15564","name":"Fantastic + Four (1998) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15565","name":"Fantastic + Four (1998) #44"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12982","name":"Fantastic + Four (1961) #179"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13063","name":"Fantastic + Four (1961) #251"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13064","name":"Fantastic + Four (1961) #252"}],"returned":20},"series":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009154/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/20443","name":"All-New, + All-Different Avengers (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3613","name":"Annihilation + (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1081","name":"Annihilation: + Nova (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1078","name":"Annihilation: + Silver Surfer (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24256","name":"Annihilation: + The Complete Collection Vol. 1 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1115","name":"Annihilation: + The Nova Corps (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1263","name":"Essential + Fantastic Four Vol. 4 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24554","name":"Fantastic + Four (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2123","name":"Fantastic + Four (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2012","name":"Fantastic + Four Annual (1963 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1424","name":"Fantastic + Four Visionaries: John Byrne Vol. 3 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13577","name":"Iron + Man (1996 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/991","name":"Last + Planet Standing (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3719","name":"Marvel + Fanfare (1982 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/49","name":"Marvel + Mangaverse Vol. I (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2275","name":"Marvel + Mangaverse: Fantastic Four (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1437","name":"Marvel + Masterworks: The Fantastic Four Vol. 8 (2005)"}],"returned":20},"stories":{"available":83,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009154/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5594","name":"3 + of 5 XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5596","name":"4 + of 5 XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5598","name":"5 + of 5 XLS","type":"cover"},{"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/5929","name":"Annihilation: + Silver Surfer (2006) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5960","name":"3 + of 6 - Annihilation","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5962","name":"4 + of 6 - Annihilation","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5966","name":"6 + of 6 - End of Story","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6149","name":"Cover + #6149","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12584","name":"Fantastic + Four (1961) #179","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12585","name":"A + Robinson Crusoe in the Negative Zone!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12768","name":"Fantastic + Four (1961) #251","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12769","name":"Into + the Negative Zone","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12770","name":"Fantastic + Four (1961) #252","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12771","name":"Cityscape","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12772","name":"Fantastic + Four (1961) #253","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12773","name":"Quest","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12774","name":"Fantastic + Four (1961) #254","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12775","name":"The + Minds of Mantracora","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12776","name":"Fantastic + Four (1961) #255","type":"cover"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009154/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/154/annihilus?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Annihilus?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009154/annihilus?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010773,"name":"Arachne","description":"","modified":"2013-10-24T13:07:59-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/70/5269526591794","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010773","comics":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010773/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30309","name":"Amazing + Spider-Man (1999) #634"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30310","name":"Amazing + Spider-Man (1999) #635"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30311","name":"Amazing + Spider-Man (1999) #636"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30312","name":"Amazing + Spider-Man (1999) #637"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29773","name":"Herc + (2010) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37899","name":"Amazing + Spider-Man (1999) #5"}],"returned":6},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010773/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/9898","name":"Herc + (2010 - 2011)"}],"returned":2},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010773/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64692","name":"Herc + (2010) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/64693","name":"Herc + (2010) #8 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69444","name":"Amazing + Spider-Man (1999) #634","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69446","name":"Amazing + Spider-Man (1999) #635","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69447","name":"Amazing + Spider-Man (1999) #635 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69448","name":"Amazing + Spider-Man (1999) #636","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69450","name":"Amazing + Spider-Man (1999) #637","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/94843","name":"Amazing + Spider-Man (1999) #5","type":"cover"}],"returned":8},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010773/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/305","name":"Spider-Island"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/173/arachne?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Arachne_(Julia_Carpenter)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010773/arachne?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1017438,"name":"Araña","description":"","modified":"2016-03-07T14:41:37-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/1017438","comics":{"available":23,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017438/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21003","name":"Amazing + Spider-Girl (2006) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22903","name":"Amazing + Spider-Girl (2006) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30311","name":"Amazing + Spider-Man (1999) #636"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30312","name":"Amazing + Spider-Man (1999) #637"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2311","name":"ARANA + VOL. 2: IN THE BEGINNING DIGEST (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3497","name":"ARANA + VOL. 3: NIGHT OF THE HUNTER DIGEST (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102811","name":"Arana: + Night Of The Hunter (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1589","name":"Arana: + The Heart of the Spider (2005) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1679","name":"Arana: + The Heart of the Spider (2005) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1778","name":"Arana: + The Heart of the Spider (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1881","name":"Arana: + The Heart of the Spider (2005) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1983","name":"Arana: + The Heart of the Spider (2005) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2086","name":"Arana: + The Heart of the Spider (2005) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2258","name":"Arana: + The Heart of the Spider (2005) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2364","name":"Arana: + The Heart of the Spider (2005) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2530","name":"Arana: + The Heart of the Spider (2005) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2531","name":"Arana: + The Heart of the Spider (2005) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3066","name":"Arana: + The Heart of the Spider (2005) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3165","name":"Arana: + The Heart of the Spider (2005) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37044","name":"Avengers + Academy Giant-Size (2010) #1"}],"returned":20},"series":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017438/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/1126","name":"Amazing + Spider-Girl (2006 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1454","name":"ARANA + VOL. 2: IN THE BEGINNING DIGEST (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1562","name":"ARANA + VOL. 3: NIGHT OF THE HUNTER DIGEST (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35459","name":"Arana: + Night Of The Hunter (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/853","name":"Arana: + The Heart of the Spider (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13250","name":"Avengers + Academy Giant-Size (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24528","name":"Captain + Marvel: Carol Danvers - The Ms. Marvel Years Vol. 2 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/813","name":"Marvel + Team-Up (2004 - 2006)"}],"returned":9},"stories":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017438/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4131","name":"1 + of 3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4133","name":"2 + of 4 - League of Losers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4436","name":"1 + of 6 - Freshman Flu","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4438","name":"2 + of 6 - Freshman Flu","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4440","name":"3 + of 6 - In the Beginning","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4444","name":"4 + of 6 - In the Beginning","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4446","name":"5 + of 6 - In the Beginning","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4448","name":"6 + of 6 - In the Beginning","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4450","name":"1 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4452","name":"2 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4454","name":"3 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4456","name":"4 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4458","name":"5 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4460","name":"6 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/45556","name":"Spider-Girl + vs. Arana 1 of 1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50852","name":"2 + of 6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69448","name":"Amazing + Spider-Man (1999) #636","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69450","name":"Amazing + Spider-Man (1999) #637","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82123","name":"Avengers + Academy Giant-Size #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/147544","name":"cover + from CAPTAIN MARVEL: CAROL DANVERS - THE MS. MARVEL YEARS VOL. 2 TPB (2018) + #2","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1017438/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/176/araa?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1017438/araa?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010784,"name":"Ares","description":"","modified":"2014-04-29T14:50:59-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/10/535ff3daea603","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010784","comics":{"available":64,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010784/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22461","name":"Adam: + Legend of the Blue Marvel (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37071","name":"Amazing + Spider-Man (1999) #647 (MCNIVEN VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3423","name":"Ares + (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3540","name":"Ares + (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3947","name":"Ares + (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4074","name":"Ares + (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4186","name":"Ares + (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5205","name":"ARES: + GOD OF WAR TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17532","name":"Avengers + (1998) #48"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7300","name":"Avengers + (1963) #50"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7352","name":"Avengers + (1963) #98"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7353","name":"Avengers + (1963) #99"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7156","name":"Avengers + (1963) #283"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7157","name":"Avengers + (1963) #284"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7158","name":"Avengers + (1963) #285"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21394","name":"Avengers/Invaders + (2008) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22935","name":"Avengers/Invaders + (2008) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23132","name":"Avengers/Invaders + (2008) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1038","name":"AVENGERS: + THE KANG DYNASTY TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/26195","name":"Captain + America: Reborn (2009) #1"}],"returned":20},"series":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010784/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/6079","name":"Adam: + Legend of the Blue Marvel (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/983","name":"Ares + (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1648","name":"ARES: + GOD OF WAR TPB (2006)"},{"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/4864","name":"Avengers/Invaders + (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/98","name":"AVENGERS: + THE KANG DYNASTY TPB (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8213","name":"Captain + America: Reborn (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14718","name":"CAPTAIN + AMERICA: REBORN MGC 1 (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13259","name":"Chaos + War: Ares (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20535","name":"Contest + of Champions (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9002","name":"Dark + Avengers: Ares (2009 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3762","name":"Incredible + Hercules (2008 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/977","name":"Irredeemable + Ant-Man (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1558","name":"MARVEL + MASTERWORKS: THE AVENGERS VOL. 5 HC (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25150","name":"Marvel + Super Action (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13089","name":"Marvel + Super Special (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22337","name":"MIGHTY + AVENGERS BY BRIAN MICHAEL BENDIS: THE COMPLETE COLLECTION TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5381","name":"Mighty + Avengers Vol. 1: The Ultron Initiative (2008)"}],"returned":20},"stories":{"available":75,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010784/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5532","name":"1 + of 5 xLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5533","name":"1 + of 5 xLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5535","name":"2 + of 5 xLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5537","name":"3 + of 5 xLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5539","name":"4 + of 5 xLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5541","name":"5 + of 5 xLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7882","name":"Mighty + Avengers (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8237","name":"Irredeemable + Ant-Man (2006) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8337","name":"1 + of 6 - Ultron","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8340","name":"2 + of 6 - Ultron","type":"interiorStory"},{"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/14852","name":"Whom + the Gods Would Destroy","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14854","name":"Battleground: Olympus","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14856","name":"Twilight + of the Gods","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15160","name":"AVENGERS + (1963) #50","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15267","name":"Let + Slip the Dogs of War","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/32377","name":"4 + of 6 - Ultron; THE INITIATIVE BANNER","type":"cover"},{"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/32605","name":"5 + of 6 - Ultron; THE INITIATIVE BANNER","type":"interiorStory"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010784/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/characters/183/ares?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Ares?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010784/ares?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009165,"name":"Avengers","description":"Earth''s + Mightiest Heroes joined forces to take on threats that were too big for any + one hero to tackle. With a roster that has included Captain America, Iron + Man, Ant-Man, Hulk, Thor, Wasp and dozens more over the years, the Avengers + have come to be regarded as Earth''s No. 1 team.","modified":"2020-07-21T10:29:09-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/5102c774ebae7","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","comics":{"available":2106,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009165/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102802","name":"A.X.E.: + Avengers (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102808","name":"A.X.E.: + Eve Of Judgment (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100748","name":"A.X.E.: + Judgment Day (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/100366","name":"A.X.E.: + Judgment Day (2022) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102807","name":"A.X.E.: + Judgment Day (2022) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/102866","name":"A.X.E.: + Judgment Day Companion (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77059","name":"Absolute + Carnage: Avengers (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/81255","name":"Acts + of Vengeance: Avengers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42539","name":"Age + of Apocalypse (2012) #2 (Avengers Art Appreciation Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30090","name":"Age + of Heroes (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/33566","name":"Age + of Heroes (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30092","name":"Age + of Heroes (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30093","name":"Age + of Heroes (2010) #4"},{"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"}],"returned":20},"series":{"available":650,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009165/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/35453","name":"A.X.E.: + Avengers (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35456","name":"A.X.E.: + Eve Of Judgment (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34560","name":"A.X.E.: + Judgment Day (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34459","name":"A.X.E.: + Judgment Day (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35490","name":"A.X.E.: + Judgment Day Companion (2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27631","name":"Absolute + Carnage: Avengers (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29061","name":"Acts + of Vengeance: Avengers (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15331","name":"Age + of Apocalypse (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9790","name":"Age + of Heroes (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17318","name":"Age + of Ultron (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13383","name":"Alias + Omnibus (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16449","name":"All-New + X-Men (2012 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20443","name":"All-New, + All-Different Avengers (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22190","name":"All-New, + All-Different Avengers Annual (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22374","name":"ALL-NEW, + ALL-DIFFERENT AVENGERS HC (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34554","name":"All-Out + Avengers (2022 - 2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/719","name":"Alpha + Flight (2004 - 2005)"}],"returned":20},"stories":{"available":2938,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009165/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/490","name":"Interior + #490","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/542","name":"Interior + #542","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/572","name":"Interior + #572","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/574","name":"Interior + #574","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/575","name":"Interior + #575","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/577","name":"Interior + #577","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/579","name":"Interior + #579","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/580","name":"Interior + #580","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/749","name":"1 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/892","name":"THOR + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1024","name":"Avengers + (1998) #80","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1025","name":"Interior + #1025","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1026","name":"Avengers + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1027","name":"Interior + #1027","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1029","name":"Interior + #1029","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1031","name":"Interior + #1031","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1039","name":"Interior + #1039","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1041","name":"Avengers + (1998) #502","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1043","name":"Interior + #1043","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1054","name":"Avengers + (1998) #72","type":"cover"}],"returned":20},"events":{"available":33,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009165/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/314","name":"Age + of Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/233","name":"Atlantis + Attacks"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers + Disassembled"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/239","name":"Crossing"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/333","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/337","name":"Monsters + Unleashed"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009165/avengers?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Avengers?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009165/avengers?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009329,"name":"Ben + Grimm","description":"","modified":"2011-03-18T12:27:31-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/1009329","comics":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009329/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40129","name":"Amazing + Spider-Man (1999) #692"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40124","name":"Amazing + Spider-Man (1999) #693"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62691","name":"Before + the Fantastic Four: Ben Grimm & Logan (2000) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62692","name":"Before + the Fantastic Four: Ben Grimm & Logan (2000) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62693","name":"Before + the Fantastic Four: Ben Grimm & Logan (2000) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12826","name":"Captain + America (2002) #18"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/359","name":"Captain + America (2002) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13216","name":"Fantastic + Four (1961) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12970","name":"Fantastic + Four (1961) #168"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12971","name":"Fantastic + Four (1961) #169"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12973","name":"Fantastic + Four (1961) #170"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13146","name":"Fantastic + Four (1961) #326"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13147","name":"Fantastic + Four (1961) #327"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13148","name":"Fantastic + Four (1961) #328"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13153","name":"Fantastic + Four (1961) #332"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13155","name":"Fantastic + Four (1961) #334"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13156","name":"Fantastic + Four (1961) #335"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13158","name":"Fantastic + Four (1961) #337"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13159","name":"Fantastic + Four (1961) #338"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13160","name":"Fantastic + Four (1961) #339"}],"returned":20},"series":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009329/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/23008","name":"Before + the Fantastic Four: Ben Grimm & Logan (2000)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain + America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2435","name":"Fantastic + Four Omnibus Vol. 2 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1458","name":"FANTASTIC + FOUR VISIONARIES: GEORGE PEREZ VOL. 1 TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2254","name":"FANTASTIC + FOUR VISIONARIES: WALTER SIMONSON VOL. 1 TPB (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25306","name":"Fantastic + Four Vol. 2: Mr. And Mrs. Grimm (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/965","name":"Fantastic + Four: The End (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3374","name":"Hulk + (2008 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22787","name":"INFAMOUS + IRON MAN VOL. 1: INFAMOUS TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3715","name":"Marvel + Two-in-One (1974 - 1983)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/702","name":"Ultimate + Fantastic Four (2003 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1211","name":"Ultimate + Fantastic Four Vol. 1: The Fantastic (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1212","name":"Ultimate + Fantastic Four Vol. 1: The Fantastic (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1244","name":"Ultimate + Fantastic Four Vol. 2: Doom (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5743","name":"Ultimate + Fantastic Four/Ultimate X-Men Annual (2008)"}],"returned":18},"stories":{"available":67,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009329/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1836","name":"Ultimate + Fantastic Four (2003) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1837","name":"Interior + #1837","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2124","name":"Ultimate + Fantastic Four (2003) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2125","name":"Interior + #2125","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2426","name":"Ultimate + Fantastic Four (2003) #2 ","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2427","name":"Interior + #2427","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2637","name":"Ultimate + Fantastic Four (2003) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2638","name":"Interior + #2638","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2639","name":"Ultimate + Fantastic Four (2003) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2640","name":"Interior + #2640","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2641","name":"Ultimate + Fantastic Four (2003) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2642","name":"Interior + #2642","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2643","name":"Ultimate + Fantastic Four (2003) #6","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2644","name":"Interior + #2644","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2645","name":"Ultimate + Fantastic Four (2003) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2646","name":"Interior + #2646","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2647","name":"Ultimate + Fantastic Four (2003) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2648","name":"Interior + #2648","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2649","name":"Ultimate + Fantastic Four (2003) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2650","name":"Interior + #2650","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009329/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/2763/ben_grimm?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009329/ben_grimm?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009489,"name":"Ben + Parker","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/8/c0/4c003d00c8ed9","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009489","comics":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009489/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/322","name":"Amazing + Spider-Man (1999) #501"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24407","name":"Amazing + Spider-Man (1999) #600"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29303","name":"Amazing + Spider-Man (1999) #600 (2ND PRINTING VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35517","name":"Amazing + Spider-Man (1999) #655"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40886","name":"Amazing + Spider-Man (1999) #655 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36956","name":"Amazing + Spider-Man Annual (2011) #38"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41661","name":"Amazing + Spider-Man Annual (1964) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1262","name":"Amazing + Spider-Man Vol. 6 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43094","name":"Amazing + Spider-Man: The Movie (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15895","name":"Bullet + Points (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5500","name":"Bullet + Points (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5634","name":"Bullet + Points (2006) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5781","name":"Bullet + Points (2006) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5946","name":"Bullet + Points (2006) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6102","name":"Bullet + Points (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4224","name":"Friendly + Neighborhood Spider-Man (2005) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4323","name":"Friendly + Neighborhood Spider-Man (2005) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4479","name":"Friendly + Neighborhood Spider-Man (2005) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14678","name":"Peter + Parker, the Spectacular Spider-Man (1976) #221"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1904","name":"Spectacular + Spider-Man (2003) #27"}],"returned":20},"series":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009489/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/13205","name":"Amazing + Spider-Man Annual (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/318","name":"Amazing + Spider-Man Vol. 6 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16371","name":"Amazing + Spider-Man: The Movie (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2424","name":"Bullet + Points (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/994","name":"Bullet + Points (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/877","name":"Friendly + Neighborhood Spider-Man (2005 - 2007)"},{"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/556","name":"Spectacular + Spider-Man (2003 - 2005)"}],"returned":10},"stories":{"available":25,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009489/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1020","name":"Amazing + Spider-Man (1999) #501","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1882","name":"Spectacular + Spider-Man (2003) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1883","name":"1 + of 1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4668","name":"Friendly + Neighborhood Spider-Man (2005) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4669","name":"1 + of 3 - Jumping the Tracks","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4670","name":"Friendly + Neighborhood Spider-Man (2005) #9","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4671","name":"2 + of 3 - Jumping the Tracks","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4672","name":"Friendly + Neighborhood Spider-Man (2005) #10","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4673","name":"3 + of 3 - Jumping the Tracks","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5612","name":"1 + of 5 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5614","name":"Bullet + Points (2006) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5616","name":"3 + of 5 - Story A - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7789","name":"4 + of 5 - Story A - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7791","name":"5 + of 5 - Story A - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/23711","name":"A + Prelude in Red","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29870","name":"Peter + Parker, The Spectacular Spider-Man (1976) #221","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29876","name":"Peter + Parker, The Spectacular Spider-Man (1976) #223","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53947","name":"Amazing + Spider-Man (1999) #600","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53948","name":"Amazing + Spider-Man (1999) #600 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/63774","name":"Amazing + Spider-Man (1999) #600, 2nd Printing Variant - Int","type":"interiorStory"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009489/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/2737/ben_parker?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Parker%2C_Ben_%28Uncle_Ben%29?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009489/ben_parker?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1011346,"name":"Ben + Reilly","description":"Ben Reilly was the most genetically stable of the many + clones of Spider-Man created by Professor Miles Warren, the Jackal.","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/20/4ce5a6abaea69","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011346","comics":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011346/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6809","name":"The + Amazing Spider-Man (1963) #394"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24415","name":"Amazing + Spider-Man (1999) #608"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24416","name":"Amazing + Spider-Man (1999) #609"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24417","name":"Amazing + Spider-Man (1999) #610"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62234","name":"AMAZING + SPIDER-MAN: THE CLONE CONSPIRACY HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14690","name":"Peter + Parker, the Spectacular Spider-Man (1976) #232"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38126","name":"Spider-Man: + New York Stories (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6829","name":"The + Amazing Spider-Man (1963) #411"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6832","name":"The + Amazing Spider-Man (1963) #414"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6835","name":"The + Amazing Spider-Man (1963) #417"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/717","name":"Ultimate + Spider-Man (2000) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/600","name":"Ultimate + Spider-Man (2000) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/759","name":"Ultimate + Spider-Man (2000) #64"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5374","name":"Ultimate + Spider-Man (2000) #102"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22","name":"Ultimate + Spider-Man Vol. 11: Carnage (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16199","name":"Ultimate + Spider-Man Vol. 17: Clone Saga (Trade Paperback)"}],"returned":16},"series":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011346/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/22857","name":"AMAZING + SPIDER-MAN: THE CLONE CONSPIRACY HC (2017)"},{"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/13721","name":"Spider-Man: + New York Stories (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1987","name":"The + Amazing Spider-Man (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/466","name":"Ultimate + Spider-Man (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1221","name":"Ultimate + Spider-Man Vol. 11: Carnage (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2692","name":"Ultimate + Spider-Man Vol. 17: Clone Saga (2007)"}],"returned":8},"stories":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011346/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1327","name":"Interior + #1327","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1401","name":"6 + of ? - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14244","name":"The + Double Part 2: No Escape","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29912","name":"Doctor + Octopus--Armed and Dangerous","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54187","name":"Amazing + Spider-Man (1999) #608","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54189","name":"Amazing + Spider-Man (1999) #609","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54190","name":"Amazing + Spider-Man (1999) #609 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54191","name":"Amazing + Spider-Man (1999) #610","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54192","name":"Amazing + Spider-Man (1999) #610 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66274","name":"Amazing + Spider-Man (1963) #411","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66277","name":"Amazing + Spider-Man (1963) #414","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66280","name":"Amazing + Spider-Man (1963) #417","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83788","name":"Spider-Man: + New York Stories (0000) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/130949","name":"cover + from Amazing Spider-Man: Dead No More (2017)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/134853","name":"cover + from The Clone Conspiracy (2017)","type":"cover"}],"returned":17},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011346/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/2919/ben_reilly?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Ben%20Reilly?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011346/ben_reilly?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010782,"name":"Ben + Urich","description":"Ben Urich is a reporter for the Daily Bugle who has + many ties to the city''s superhero community.","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/90/4c00373d10e5e","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010782","comics":{"available":53,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010782/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37257","name":"Alias + (2001) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37255","name":"Alias + Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24415","name":"Amazing + Spider-Man (1999) #608"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16889","name":"Amazing + Spider-Man Annual (1964) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16890","name":"Amazing + Spider-Man Annual (1964) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65140","name":"Daily + Bugle (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65141","name":"Daily + Bugle (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65142","name":"Daily + Bugle (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15616","name":"Daredevil + (1998) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15617","name":"Daredevil + (1998) #17"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2298","name":"Daredevil + (1998) #76"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3946","name":"Daredevil + (1998) #83"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8141","name":"Daredevil + (1964) #160"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8145","name":"Daredevil + (1964) #164"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8161","name":"Daredevil + (1964) #179"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8163","name":"Daredevil + (1964) #180"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8215","name":"Daredevil + (1964) #227"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8216","name":"Daredevil + (1964) #228"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8217","name":"Daredevil + (1964) #229"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8219","name":"Daredevil + (1964) #230"}],"returned":20},"series":{"available":27,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010782/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13383","name":"Alias + Omnibus (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23704","name":"Daily + Bugle (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/449","name":"Daredevil + (1998 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7665","name":"Daredevil + Annual (1967 - 1990)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1528","name":"DAREDEVIL + VOL. 13: THE MURDOCK PAPERS TPB (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20","name":"Daredevil + Vol. III: Wake Up (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1646","name":"Daredevil: + The Devil, Inside and Out Vol. 1 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20457","name":"Doctor + Strange (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28362","name":"Marvel''s + Spider-Man: Velocity (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6282","name":"Marvels: + Eye of the Camera (2008 - 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/2271","name":"Peter + Parker, the Spectacular Spider-Man (1976 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/674","name":"Pulse + (2004 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1630","name":"PULSE + VOL. 3: FEAR TPB (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5213","name":"Secret + Invasion: Front Line (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23521","name":"Spider-Man: + The Daily Bugle (2017)"}],"returned":20},"stories":{"available":58,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010782/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1090","name":"6 + of 6 - Decalogue","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1103","name":"2 + of 6 - The Devil in Cell Block D","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2339","name":"Cover + #2339","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2343","name":"\"THIN + AIR\" PART 5 (OF 5) The downfall of Norman Osborn – the shocking conclusion + to the story that rocked the Spidey-verse! Str","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2345","name":"2 + of 5 - Secret War arc","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2347","name":"3 + of 4 - Secret War arc","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2349","name":"4 + of 4 - Secret War arc","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2353","name":"1 + of 5 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2359","name":"1 + of","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2361","name":"2 + of - Fear","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15849","name":"Daredevil + (1964) #160","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15857","name":"Daredevil + (1964) #164","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15858","name":"Expose","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15892","name":"Daredevil + (1964) #179","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15893","name":"Spiked!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15896","name":"Daredevil + (1964) #180","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15897","name":"The + Damned","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16005","name":"Daredevil + (1964) #227","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16006","name":"Apocalypse","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16007","name":"Daredevil + (1964) #228","type":"cover"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010782/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/characters/2826/ben_urich?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Urich%2C_Ben?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010782/ben_urich?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010325,"name":"Betty + Brant","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4c7c644f453fb","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010325","comics":{"available":26,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010325/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37257","name":"Alias + (2001) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37255","name":"Alias + Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24421","name":"Amazing + Spider-Man (1999) #614"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28227","name":"Amazing + Spider-Man (1999) #622"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37071","name":"Amazing + Spider-Man (1999) #647 (MCNIVEN VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39291","name":"Amazing + Spider-Man (1999) #654.1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35517","name":"Amazing + Spider-Man (1999) #655"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40886","name":"Amazing + Spider-Man (1999) #655 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35503","name":"Amazing + Spider-Man (1999) #665"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40025","name":"Amazing + Spider-Man (1999) #665 (AMAZING SPIDER-MAN 665 I AM CAPTAIN AMERICA VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35513","name":"Amazing + Spider-Man (1999) #666"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16890","name":"Amazing + Spider-Man Annual (1964) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16896","name":"Amazing + Spider-Man Annual (1964) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30196","name":"Amazing + Spider-Man Annual (2010) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67308","name":"Amazing-Spider-Man: + Worldwide Vol. 8 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16543","name":"Avengers: + The Initiative (2007) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65140","name":"Daily + Bugle (1996) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65141","name":"Daily + Bugle (1996) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/65142","name":"Daily + Bugle (1996) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14789","name":"Peter + Parker, the Spectacular Spider-Man (1976) #85"}],"returned":20},"series":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010325/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13383","name":"Alias + Omnibus (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9802","name":"Amazing + Spider-Man Annual (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24322","name":"Amazing-Spider-Man: + Worldwide Vol. 8 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1945","name":"Avengers: + The Initiative (2007 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23704","name":"Daily + Bugle (1996 - 1997)"},{"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/23273","name":"Spider-Man: + Hobgoblin Lives (1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23521","name":"Spider-Man: + The Daily Bugle (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13831","name":"Ultimate + Comics Spider-Man (2011 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6253","name":"Untold + Tales of Spider-Man Annual (1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13911","name":"Venom + (2011 - 2013)"}],"returned":14},"stories":{"available":29,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010325/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/29623","name":"Peter + Parker, The Spectacular Spider-Man (1976) #148","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30157","name":"Peter + Parker, The Spectacular Spider-Man (1976) #85","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33363","name":"AVENGERS: + THE INITIATIVE (2007) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/33364","name":"Avengers: + The Initiative (2007) #7 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/35407","name":"","type":"profile"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/35421","name":"Amazing + Spider-Man Annual (1964) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50638","name":"Untold + Tales of Spider-Man Annual (1996) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/50639","name":"Interior + #50639","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54200","name":"Amazing + Spider-Man (1999) #614 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/61677","name":"Amazing + Spider-Man (1999) #622 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69218","name":"Amazing + Spider-Man Annual (2010) #37","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78513","name":"Amazing + Spider-Man (1999) #665","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78514","name":"Amazing + Spider-Man (1999) #665 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78534","name":"Amazing + Spider-Man (1999) #666 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78541","name":"Amazing + Spider-Man (1999) #655","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78542","name":"Amazing + Spider-Man (1999) #655 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82495","name":"[untitled]","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/89209","name":"Amazing + Spider-Man (1999) #654.1 - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90821","name":"Amazing + Spider-Man (1999) #665, I Am Captain America Variant - Int","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92597","name":"Amazing + Spider-Man (1999) #655, 2nd Printing Variant - Int","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010325/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/305","name":"Spider-Island"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/2793/betty_brant?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Brant,_Betty?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010325/betty_brant?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009185,"name":"Black + Cat","description":"","modified":"2016-03-07T10:00:52-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/03/526952357d91c","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009185","comics":{"available":216,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009185/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6744","name":"The + Amazing Spider-Man (1963) #335"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6792","name":"The + Amazing Spider-Man (1963) #379"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6794","name":"The + Amazing Spider-Man (1963) #380"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24412","name":"Amazing + Spider-Man (1999) #605"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24413","name":"Amazing + Spider-Man (1999) #606"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24414","name":"Amazing + Spider-Man (1999) #607"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28710","name":"Amazing + Spider-Man (1999) #612 (VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28226","name":"Amazing + Spider-Man (1999) #621"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/28227","name":"Amazing + Spider-Man (1999) #622"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30305","name":"Amazing + Spider-Man (1999) #630"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/32402","name":"Amazing + Spider-Man (1999) #630 (QUINONES VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/33328","name":"Amazing + Spider-Man (1999) #632 (HEROIC AGE VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/34135","name":"Amazing + Spider-Man (1999) #648"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38844","name":"Amazing + Spider-Man (1999) #648 (2ND PRINTING VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37045","name":"Amazing + Spider-Man (1999) #648 (CASELLI VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30323","name":"Amazing + Spider-Man (1999) #648 (CAMPBELL VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36937","name":"Amazing + Spider-Man (1999) #648 (BLANK COVER VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37073","name":"Amazing + Spider-Man (1999) #648 (WRAPAROUND VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30324","name":"Amazing + Spider-Man (1999) #649"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38841","name":"Amazing + Spider-Man (1999) #649 (2ND PRINTING VARIANT)"}],"returned":20},"series":{"available":79,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009185/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/24398","name":"Amazing + Spider-Man By Nick Spencer Vol. 2: Friends And Foes (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9835","name":"Amazing + Spider-Man Presents: Black Cat (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23906","name":"Amazing + Spider-Man: Venom Inc. Omega (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29032","name":"Ant-Man + (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31322","name":"Black + Cat (2020 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27314","name":"Black + Cat (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/28037","name":"Black + Cat Annual (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32384","name":"Black + Cat Annual (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27315","name":"Black + Cat Vol. 1: Grand Theft Marvel (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27316","name":"Black + Cat Vol. 2: On The Run (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31333","name":"Black + Cat Vol. 5: I’ll Take Manhattan (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32224","name":"Black + Cat Vol. 6: Infinity Score (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/925","name":"Claws + (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12916","name":"Daredevil + (2011 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/21489","name":"Deadpool: + Back in Black (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32873","name":"Death + of Doctor Strange: Spider-Man (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14701","name":"Defenders + (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23074","name":"Defenders + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14074","name":"Essential + Spider-Man Vol. 10 (2011 - Present)"}],"returned":20},"stories":{"available":244,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009185/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1727","name":"4 + of 6 xLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2973","name":"2 + of 4 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2999","name":"SENSATIONAL + SPIDER-MAN (2006) #24","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3001","name":"SENSATIONAL + SPIDER-MAN (2006) #25","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3003","name":"SENSATIONAL + SPIDER-MAN (2006) #26","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3005","name":"SENSATIONAL + SPIDER-MAN (2006) #27","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3009","name":"SENSATIONAL + SPIDER-MAN (2006) #29","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3019","name":"SENSATIONAL + SPIDER-MAN (2006) #34","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4185","name":"2 + of 4 - 4XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4948","name":"1 + of 3 - 3XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4950","name":"2 + of 3 - 3XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4952","name":"3 + of 3 - 3XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6162","name":"2 + of 5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6164","name":"3 + of 3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6166","name":"1 + of 2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6170","name":"1 + of 3 - Story C","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7872","name":"2 + of 3 - Story C","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7874","name":"3 + of 3 - Story C","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7882","name":"Mighty + Avengers (2007) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8325","name":"3 + of 3 - Story C","type":"cover"}],"returned":20},"events":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009185/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":5},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009185/black_cat?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Black_Cat_(Felicia_Hardy)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009185/black_cat?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009187,"name":"Black + Panther","description":"","modified":"2018-06-19T16:39:46-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/60/5261a80a67e7d","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009187","comics":{"available":724,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009187/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43498","name":"A+X + (2012) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30885","name":"AGE + OF HEROES TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16889","name":"Amazing + Spider-Man Annual (1964) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16900","name":"Amazing + Spider-Man Annual (1964) #25"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62388","name":"Astonishing + Tales (1970) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43221","name":"Astonishing + X-Men (2004) #51 (Create Your Own Wedding Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17490","name":"Avengers + (1998) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67002","name":"Avengers + (2018) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17501","name":"Avengers + (1998) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67311","name":"Avengers + (2018) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17512","name":"Avengers + (1998) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17523","name":"Avengers + (1998) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67763","name":"Avengers + (2018) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/67769","name":"Avengers + (2018) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17500","name":"Avengers + (1998) #19"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17502","name":"Avengers + (1998) #20"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17503","name":"Avengers + (1998) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17504","name":"Avengers + (1998) #22"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17505","name":"Avengers + (1998) #23"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77939","name":"Avengers + (2018) #36"}],"returned":20},"series":{"available":246,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009187/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10235","name":"AGE + OF HEROES TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16431","name":"Astonishing + Tales (1970)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24229","name":"Avengers + (2018 - Present)"},{"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/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26625","name":"Avengers + Assemble: Living Legends (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2384","name":"Avengers + Classic (2007 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3971","name":"Avengers + Fairy Tales (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2111","name":"Avengers + Forever (1998 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9863","name":"Avengers + Origins: Vision (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/35600","name":"Avengers + Unlimited Infinity Comic (2022 - 2023)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/158","name":"Avengers + Vol. 1: World Trust (2003)"}],"returned":20},"stories":{"available":946,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009187/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/650","name":"2 + of 2- Black Panther crossover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1820","name":"Cover + #1820","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3812","name":"1 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3813","name":"1 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3814","name":"2 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3815","name":"2 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3816","name":"3 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3817","name":"3 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3818","name":"4 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3819","name":"4 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3820","name":"5 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3821","name":"5 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3822","name":"6 + of 6- Who is the Black Panther","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3823","name":"6 + of 6- Who is the Black Panther","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3825","name":"1 + of 1- House of M","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3826","name":"1 + of 2 - (X-Men crossover)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3827","name":"1 + of 2 - (X-Men crossover)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3828","name":"2 + of 2 - X-Men crossover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3829","name":"2 + of 2 - X-Men crossover","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3831","name":"1 + of 4 - Bride Prelude","type":"interiorStory"}],"returned":20},"events":{"available":17,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009187/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/311","name":"Marvel + NOW!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/266","name":"Other + - Evolve or Die"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/305","name":"Spider-Island"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":17},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009187/black_panther?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Black_Panther_(T%27Challa)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009187/black_panther?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009189,"name":"Black + Widow","description":"","modified":"2016-01-04T18:09:26-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/30/50fecad1f395b","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","comics":{"available":590,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009189/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43495","name":"A+X + (2012) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43509","name":"A+X + (2012) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22461","name":"Adam: + Legend of the Blue Marvel (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23245","name":"Amazing + Adventures (1970) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23256","name":"Amazing + Adventures (1970) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23267","name":"Amazing + Adventures (1970) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23278","name":"Amazing + Adventures (1970) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23279","name":"Amazing + Adventures (1970) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23280","name":"Amazing + Adventures (1970) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23281","name":"Amazing + Adventures (1970) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23282","name":"Amazing + Adventures (1970) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71245","name":"Amazing + Fantasy (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71246","name":"Amazing + Fantasy (2021) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71248","name":"Amazing + Fantasy (2021) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71893","name":"Amazing + Fantasy (2021) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/94700","name":"Amazing + Fantasy Treasury Edition (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40109","name":"Amazing + Spider-Man (1999) #684"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40116","name":"Amazing + Spider-Man (1999) #685"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40115","name":"Amazing + Spider-Man (1999) #686"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40113","name":"Amazing + Spider-Man (1999) #687"}],"returned":20},"series":{"available":224,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009189/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6079","name":"Adam: + Legend of the Blue Marvel (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17318","name":"Age + of Ultron (2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6666","name":"Amazing + Adventures (1970 - 1976)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25984","name":"Amazing + Fantasy (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32253","name":"Amazing + Fantasy Treasury Edition (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"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/15373","name":"Avengers + Assemble (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1816","name":"Avengers + Assemble Vol. 4 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2384","name":"Avengers + Classic (2007 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/157","name":"Avengers + Legends Vol. 2: The Korvac Saga (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22229","name":"Avengers + VS (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15305","name":"Avengers + Vs. X-Men (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18398","name":"Avengers + World (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/4864","name":"Avengers/Invaders + (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/937","name":"Avengers: + Earth''s Mightiest Heroes II (2006 - 2007)"}],"returned":20},"stories":{"available":673,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009189/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1060","name":"Cover + #1060","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1066","name":"Cover + #1066","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1068","name":"\"THE + WIDOW,\" PART 4 (OF 4) The blistering climax to the sexy 4-part Black Widow + storyline (just in time for a certain blistering","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1092","name":"2 + of 5 - Murdock Papers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1094","name":"3 + of 5 - Murdock Papers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1096","name":"4 + of 6 - Murdock Papers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1098","name":"5 + of 6 - Murdock Papers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3455","name":"6 + of 6 - Breakout!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3535","name":"Black + Widow (2004) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3539","name":"Black + Widow (2004) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3540","name":"Black + Widow (2004) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3541","name":"Black + Widow (2004) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3543","name":"Black + Widow (2004) #5","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3545","name":"Black + Widow (2004) #6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3560","name":"ULTIMATE + NIGHTMARE (2004) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4113","name":"1 + of 1 - Captain America & Black Widow","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5185","name":"Avengers: + Earth''s Mightiest Heroes II (2006) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5186","name":"5 + of 8 - 8XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6044","name":"Wolverine + Origins (2006) #8","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7750","name":"Avengers: + Earth''s Mightiest Heroes II (2006) #8","type":"cover"}],"returned":20},"events":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009189/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/314","name":"Age + of Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/309","name":"Shattered + Heroes"}],"returned":16},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009189/black_widow?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Black_Widow_(Natasha_Romanova)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009189/black_widow?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009195,"name":"Blastaar","description":"","modified":"2013-10-24T13:07:25-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/e0/52695222c22e0","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009195","comics":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009195/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17271","name":"Annihilation: + Conquest (2007) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4822","name":"Annihilation: + The Nova Corps (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7185","name":"Avengers + (1963) #309"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7187","name":"Avengers + (1963) #310"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/46098","name":"Fantastic + Four (2012) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13322","name":"Fantastic + Four (1996) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15561","name":"Fantastic + Four (1998) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13104","name":"Fantastic + Four (1961) #289"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13106","name":"Fantastic + Four (1961) #290"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13137","name":"Fantastic + Four (1961) #318"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13181","name":"Fantastic + Four (1961) #358"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13229","name":"Fantastic + Four (1961) #400"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5280","name":"Heroes + Reborn: Fantastic Four (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60444","name":"Marvel + Masterworks: The Fantastic Four Vol. 19 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2218","name":"Marvel + Masterworks: The X-Men Vol. 5 (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10492","name":"Paradise + X (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10493","name":"Paradise + X (2002) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10497","name":"Paradise + X (2002) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10498","name":"Paradise + X (2002) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10501","name":"Paradise + X (2002) #6"}],"returned":20},"series":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009195/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/3061","name":"Annihilation: + Conquest (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1115","name":"Annihilation: + The Nova Corps (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16557","name":"Fantastic + Four (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2121","name":"Fantastic + Four (1961 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/421","name":"Fantastic + Four (1998 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2123","name":"Fantastic + Four (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1812","name":"Heroes + Reborn: Fantastic Four (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22325","name":"Marvel + Masterworks: The Fantastic Four Vol. 19 (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1508","name":"Marvel + Masterworks: The X-Men Vol. 5 (2005)"},{"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/2702","name":"PARADISE + X VOL. 2 TPB [NEW PRINTING] (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19679","name":"Spider-Man/Deadpool + (2016 - 2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13192","name":"Steve + Rogers: Super Soldier Annual (2010)"},{"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/22986","name":"Warlock + (1998 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2093","name":"Webspinners: + Tales of Spider-Man (1999 - 2000)"}],"returned":20},"stories":{"available":46,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009195/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/6149","name":"Cover + #6149","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12853","name":"Rip + Wide the Sky!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12857","name":"Risk","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12924","name":"Beyond + the Pale!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13028","name":"Blastaar","type":"pinup"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13329","name":"Fantastic + Four (1961) #400","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13332","name":"Even + the Watchers Can Die!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14910","name":"Avengers + (1963) #309","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14914","name":"Avengers + (1963) #310","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15575","name":"Cover + #15575","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15576","name":"The + Rage of Blastaar!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16819","name":"Thor + (1966) #269","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16820","name":"A + Walk on the Wild Side!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16821","name":"Thor + (1966) #270","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16822","name":"Minute + of Madness -- Dark Day of Doom!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25730","name":"Cover + #25730","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25731","name":"The + Time Before, Part 1 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25734","name":"Cover + #25734","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25735","name":"The + Time Before, Part 2 of 2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25888","name":"Into + the Negative Zone!","type":"interiorStory"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009195/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/229","name":"Annihilation"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/293","name":"Annihilation: + Conquest"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/319","name":"Original + Sin"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/characters/298/blastaar?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blastaar?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009195/blastaar?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009199,"name":"Blob","description":"","modified":"2011-02-09T17:31:11-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/10/4c7c648178328","extension":"png"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009199","comics":{"available":77,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38524","name":"Age + of X: Universe (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6929","name":"Avengers + Annual (1967) #15"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7467","name":"Cable + (1993) #87"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66300","name":"Cable + & X-Force: Onslaught Rising (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8261","name":"Daredevil + (1964) #269"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4275","name":"Decimation: + Generation M (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16254","name":"Exiles + (2001) #14"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1094","name":"Exiles + Vol. 3: Out of Time (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3417","name":"Generation + M (2005) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3463","name":"House + of M: Uncanny X-Men (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9180","name":"Incredible + Hulk (1962) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/105507","name":"Love + Unlimited Infinity Comic (2022) #32"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1587","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14796","name":"Peter + Parker, the Spectacular Spider-Man (1976) #91"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43455","name":"Amazing + Spider-Man (1999) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36153","name":"Uncanny + X-Force (2010) #16"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40447","name":"Uncanny + X-Force (2010) #27"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40442","name":"Uncanny + X-Force (2010) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12539","name":"Uncanny + X-Men (1963) #86"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12459","name":"Uncanny + X-Men (1963) #140"}],"returned":20},"series":{"available":32,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1988","name":"Avengers + Annual (1967 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1995","name":"Cable + (1993 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24019","name":"Cable + & X-Force: Onslaught Rising (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1635","name":"Decimation: + Generation M (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/154","name":"Exiles + Vol. 3: Out of Time (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/973","name":"Generation + M (2005 - 2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1412","name":"House + of M: Uncanny X-Men (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/36514","name":"Love + Unlimited Infinity Comic (2022 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1440","name":"MARVEL + MASTERWORKS: THE UNCANNY X-MEN VOL. 2 HC (2005)"},{"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/9976","name":"Uncanny + X-Force (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2258","name":"Uncanny + X-Men (1963 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/543","name":"Weapon + X (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3648","name":"What + If? (1989 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6688","name":"X-51 + (1999 - 2000)"}],"returned":20},"stories":{"available":80,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/752","name":"Uncanny + X-Men (1963) #463","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/753","name":"2 + of 4 - Season of the Witch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/755","name":"4 + of 4 - Season of the Witch (HoM)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5486","name":"3 + of 5 - 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5487","name":"3 + of 5 - 5XLS","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15470","name":"Rage!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","name":"Days + of Future Past","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15507","name":"Uncanny + X-Men (1963) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15624","name":"Uncanny + X-Men (1963) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/15663","name":"Cover + #15663","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16097","name":"DAREDEVIL + (1964) #269","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/17387","name":"Betrayal","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18887","name":"Incredible + Hulk (1962) #369","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/18888","name":"Silent + Screams","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22086","name":"Fallen + Angel!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22103","name":"Guido + vs. Blob","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22237","name":"Kiss + Of Death!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22243","name":"For + All The World To See","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22259","name":"Dust + To Dust","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/22352","name":"Lost + and Found!","type":"interiorStory"}],"returned":20},"events":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009199/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/227","name":"Age + of Apocalypse"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/246","name":"Evolutionary + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":7},"urls":[{"type":"detail","url":"http://marvel.com/characters/308/blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blob?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009199/blob?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1011264,"name":"Blue + Shield","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/1011264","comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011264/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17582","name":"Amazing + Spider-Man (1999) #550"}],"returned":1},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011264/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"}],"returned":1},"stories":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011264/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/36795","name":"The + Menace of Menace 2 of 3","type":"cover"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011264/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/328/blue_shield?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Blue_Shield?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011264/blue_shield?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009212,"name":"Bullseye","description":"","modified":"2016-02-03T16:49:50-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/30/539a08f322fd1","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009212","comics":{"available":128,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009212/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12695","name":"Alpha + Flight (1983) #34"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21930","name":"Amazing + Spider-Man (1999) #572"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37071","name":"Amazing + Spider-Man (1999) #647 (MCNIVEN VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61261","name":"Bullseye + (2017) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61262","name":"Bullseye + (2017) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61263","name":"Bullseye + (2017) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61264","name":"Bullseye + (2017) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/791","name":"Bullseye: + Greatest Hits (2004) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/895","name":"Bullseye: + Greatest Hits (2004) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/47","name":"Bullseye: + Greatest Hits (2004) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1444","name":"Bullseye: + Greatest Hits (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1536","name":"Bullseye: + Greatest Hits (2004) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29827","name":"Bullseye: + Perfect Game (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29828","name":"Bullseye: + Perfect Game (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61425","name":"BULLSEYE: + THE COLOMBIAN CONNECTION TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4216","name":"Civil + War (2006) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5075","name":"Civil + War (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5077","name":"Civil + War (2006) #5 (TURNER VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5142","name":"Civil + War (2006) #5 (TURNER SKETCH VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/61260","name":"Bullseye + (2017) #1"}],"returned":20},"series":{"available":59,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009212/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22530","name":"Bullseye + (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/771","name":"Bullseye: + Greatest Hits (2004 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13587","name":"Bullseye: + Perfect Game (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22550","name":"BULLSEYE: + THE COLOMBIAN CONNECTION TPB (2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1067","name":"Civil + War (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/449","name":"Daredevil + (1998 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20780","name":"Daredevil + (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6073","name":"Daredevil + Saga (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18","name":"Daredevil + Visionaries: Kevin Smith (Daredevil Vol. I: Guardian Devil) (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1528","name":"DAREDEVIL + VOL. 13: THE MURDOCK PAPERS TPB (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/181","name":"DAREDEVIL + VOL. 6: LOWLIFE TPB (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/229","name":"DAREDEVIL + VOL. 7: HARDCORE TPB (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1329","name":"Daredevil + Vs. Bullseye Vol. 1 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19","name":"DAREDEVIL/ECHO: + PARTS OF A HOLE PREMIERE HC (2010 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/11676","name":"Daredevil: + Black and White (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23968","name":"Daredevil: + Shadowland Omnibus (John Cassaday Cover) (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1646","name":"Daredevil: + The Devil, Inside and Out Vol. 1 (2006)"}],"returned":20},"stories":{"available":140,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009212/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1096","name":"4 + of 6 - Murdock Papers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1105","name":"3 + of 6 - The Devil in Cell Block D","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1109","name":"5 + of 6 - The Devil in Cell Block D","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1113","name":"Daredevil + (1998) #88","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1114","name":"1 + of 6","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3608","name":"4 + of 5 - Devil''s Due 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3614","name":"\"DEVIL’S + DUE\" PART 3 (OF 5) Elektra comes face to face with a classic Marvel villain + never before seen in the Ultimate Universe!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3616","name":"5 + of 5 - Devil''s Due 5XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3673","name":"BULLSEYE: + GREATEST HITS (2004) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3675","name":"BULLSEYE: + GREATEST HITS (2004) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3677","name":"BULLSEYE: + GREATEST HITS (2004) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3679","name":"BULLSEYE: + GREATEST HITS (2004) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3681","name":"BULLSEYE: + GREATEST HITS (2004) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3794","name":"IDENTITY + DISC (2004) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3796","name":"IDENTITY + DISC (2004) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3800","name":"IDENTITY + DISC (2004) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3802","name":"IDENTITY + DISC (2004) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3924","name":"THUNDERBOLTS + (2006) #110","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3926","name":"Leinil + Yu Cover","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4042","name":"Whatever + happened to Turk? Just how many times HAS Elektra died and come back to life? + And who the heck is Mike Murdock?! Find o","type":"cover"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009212/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/59","name":"Shadowland"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009212/bullseye?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Bullseye?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009212/bullseye?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009213,"name":"Bushwacker","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/1009213","comics":{"available":12,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009213/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30301","name":"Amazing + Spider-Man (1999) #626"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8239","name":"Daredevil + (1964) #249"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8250","name":"Daredevil + (1964) #259"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8252","name":"Daredevil + (1964) #260"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8385","name":"Daredevil + (1964) #380"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1122","name":"DAREDEVIL + VOL. 6: LOWLIFE TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1628","name":"New + Avengers (2004) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/3345","name":"New + Avengers Vol. 1: Breakout (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6116","name":"Punisher + War Journal (2006) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22165","name":"Punisher + War Journal (1988) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22166","name":"Punisher + War Journal (1988) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/33740","name":"X-Force: + Sex and Violence (2010) #2"}],"returned":12},"series":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009213/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/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/181","name":"DAREDEVIL + VOL. 6: LOWLIFE TPB (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/753","name":"New + Avengers (2004 - 2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1260","name":"New + Avengers Vol. 1: Breakout (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5860","name":"Punisher + War Journal (1988 - 1995)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1112","name":"Punisher + War Journal (2006 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/11180","name":"X-Force: + Sex and Violence (2010)"}],"returned":8},"stories":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009213/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3443","name":"4 + of 5 - Breakout!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7868","name":"Punisher + War Journal (2006) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16054","name":"Kiss + and Kill","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16075","name":"Daredevil + (1964) #259","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16076","name":"The + Children Are Watching You","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16079","name":"Daredevil + (1964) #260","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16080","name":"Vital + Signs","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16358","name":"This + Issue: BOOM !","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/16359","name":"Previously + in Daredevil","type":"recap"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49615","name":"Art + Imitates Death","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/49618","name":"Vengeance + Belongs to Bushwacker!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/69428","name":"Amazing + Spider-Man (1999) #626","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/76347","name":"X-Force: + Sex and Violence (2010) #2","type":"cover"}],"returned":13},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009213/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/characters/369/bushwacker?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Bushwacker?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009213/bushwacker?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009220,"name":"Captain + America","description":"Vowing to serve his country any way he could, young + Steve Rogers took the super soldier serum to become America''s one-man army. + Fighting for the red, white and blue for over 60 years, Captain America is + the living, breathing symbol of freedom and liberty.","modified":"2020-04-04T19:01:59-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/50/537ba56d31087","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","comics":{"available":2439,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009220/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43488","name":"A+X + (2012) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43501","name":"A+X + (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43508","name":"A+X + (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17743","name":"A-Next + (1998) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17744","name":"A-Next + (1998) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17745","name":"A-Next + (1998) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17746","name":"A-Next + (1998) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17747","name":"A-Next + (1998) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17748","name":"A-Next + (1998) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17749","name":"A-Next + (1998) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17750","name":"A-Next + (1998) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17740","name":"A-Next + (1998) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17741","name":"A-Next + (1998) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17742","name":"A-Next + (1998) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66978","name":"Adventures + of Captain America (1991) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66979","name":"Adventures + of Captain America (1991) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66980","name":"Adventures + of Captain America (1991) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/66981","name":"Adventures + of Captain America (1991) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42539","name":"Age + of Apocalypse (2012) #2 (Avengers Art Appreciation Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30090","name":"Age + of Heroes (2010) #1"}],"returned":20},"series":{"available":694,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009220/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3620","name":"A-Next + (1998 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24227","name":"Adventures + of Captain America (1991 - 1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15331","name":"Age + of Apocalypse (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9790","name":"Age + of Heroes (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10235","name":"AGE + OF HEROES TPB (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13896","name":"Age + of X: Universe (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7534","name":"All + Winners Comics 70th Anniversary Special (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2114","name":"All-Winners + Comics (1941 - 1947)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9865","name":"All-Winners + Squad: Band of Heroes (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25984","name":"Amazing + Fantasy (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9802","name":"Amazing + Spider-Man Annual (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1489","name":"AMAZING + SPIDER-MAN VOL. 10: NEW AVENGERS TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14818","name":"Annihilators: + Earthfall (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24323","name":"Ant-Man + and the Wasp Adventures (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14696","name":"Art + of Marvel Movies: The Art of Captain America - The First Avenger (2011 - Present)"}],"returned":20},"stories":{"available":3607,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009220/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/670","name":"X-MEN + (2004) #186","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/892","name":"THOR + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/960","name":"3 + of ?","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1026","name":"Avengers + (1998) #81","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1041","name":"Avengers + (1998) #502","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1042","name":"Avengers + (1998) #503","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1054","name":"Avengers + (1998) #72","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1163","name":"Amazing + Spider-Man (1999) #519","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1165","name":"Amazing + Spider-Man (1999) #520","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1167","name":"Amazing + Spider-Man (1999) #521","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1175","name":"Amazing + Spider-Man (1999) #523","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1193","name":"Amazing + Spider-Man (1999) #534","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1199","name":"Amazing + Spider-Man (1999) #537","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1203","name":"Amazing + Spider-Man (1999) #538","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1414","name":"Cover + #1414","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1500","name":"Interior + #1500","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1501","name":"CAPTAIN + AMERICA (2002) #21","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1503","name":"CAPTAIN + AMERICA (2002) #22","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1505","name":"CAPTAIN + AMERICA (2002) #23","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1606","name":"WEAPON + X (2002) #14","type":"cover"}],"returned":20},"events":{"available":31,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009220/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/314","name":"Age + of Ultron"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/231","name":"Armor + Wars"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/234","name":"Avengers + Disassembled"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/320","name":"Axis"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/296","name":"Chaos + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/251","name":"House + of M"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/29","name":"Infinity + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/317","name":"Inhumanity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/337","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/333","name":"Monsters + Unleashed"}],"returned":20},"urls":[{"type":"detail","url":"http://marvel.com/comics/characters/1009220/captain_america?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Captain_America_(Steve_Rogers)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009220/captain_america?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1010338,"name":"Captain + Marvel (Carol Danvers)","description":"","modified":"2020-07-21T10:33:02-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/80/5269608c1be7a","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010338","comics":{"available":567,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010338/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58636","name":"Marvel + New Year''s Eve Special Infinite Comic (2017) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43505","name":"A+X + (2012) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56017","name":"A-Force + (2016) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56018","name":"A-Force + (2016) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56019","name":"A-Force + (2016) #8"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56020","name":"A-Force + (2016) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56021","name":"A-Force + (2016) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77217","name":"Absolute + Carnage: Captain Marvel (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22461","name":"Adam: + Legend of the Blue Marvel (2008) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23733","name":"Adam: + Legend of the Blue Marvel (2008) #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/37277","name":"Alias + (2001) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37280","name":"Alias + (2001) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37255","name":"Alias + Omnibus (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/60276","name":"All-New, + All-Different Avengers Annual (2016) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12638","name":"Alpha + Flight (1983) #10"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/4277","name":"Amazing + Spider-Man (1999) #533"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/32217","name":"Amazing + Spider-Man (1999) #653"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35521","name":"Amazing + Spider-Man (1999) #654"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39595","name":"Amazing + Spider-Man (1999) #654 (2nd Printing Variant)"}],"returned":20},"series":{"available":194,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010338/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20606","name":"A-Force + (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27665","name":"Absolute + Carnage: Captain Marvel (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6079","name":"Adam: + Legend of the Blue Marvel (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6807","name":"Agents + of Atlas (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/672","name":"Alias + (2001 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13383","name":"Alias + Omnibus (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22190","name":"All-New, + All-Different Avengers Annual (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14818","name":"Annihilators: + Earthfall (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9085","name":"Avengers + (2010 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24229","name":"Avengers + (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9859","name":"Avengers + & the Infinity Gauntlet (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13320","name":"Avengers + Annual (2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15373","name":"Avengers + Assemble (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1340","name":"Avengers + Assemble (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1496","name":"Avengers + Assemble Vol. 2 (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1737","name":"Avengers + Assemble Vol. 3 (2006)"}],"returned":20},"stories":{"available":666,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010338/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1191","name":"Amazing + Spider-Man (1999) #533","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2359","name":"1 + of","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3411","name":"1 + of 4 - Nimrod","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/3479","name":"2 + of 2 - Spider-Woman","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/4125","name":"3 + of 3 - Titannus War","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5559","name":"1 + of 3 - Best of the Best","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5561","name":"2 + of 3 - Best of the Best","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5563","name":"3 + of 3 - Best of the Best","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5565","name":"1 + of 2 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5567","name":"2 + of 2 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5569","name":"1 + of 3 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5571","name":"2 + of 3 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5573","name":"3 + of 3 - Civil War","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5575","name":"1 + of 2 - Rogue","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5577","name":"2 + of 2 - Rogue","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5579","name":"1 + of 2 - Initiative","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5872","name":"1 + of 7 - 7XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5903","name":"7 + of 7 - 7XLS","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5905","name":"Cover + #5905","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/5907","name":"Cover + #5907","type":"cover"}],"returned":20},"events":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010338/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/310","name":"Avengers + VS X-Men"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/318","name":"Dark + Reign"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/240","name":"Days + of Future Present"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/248","name":"Fall + of the Mutants"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/315","name":"Infinity"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/255","name":"Initiative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/311","name":"Marvel + NOW!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/37","name":"Maximum + Security"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/337","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/333","name":"Monsters + Unleashed"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/269","name":"Secret + Invasion"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/305","name":"Spider-Island"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/277","name":"World + War Hulk"}],"returned":16},"urls":[{"type":"detail","url":"http://marvel.com/characters/9/captain_marvel?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Ms._Marvel_(Carol_Danvers)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010338/captain_marvel_carol_danvers?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_comics_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_comics_by_ID.yml new file mode 100644 index 0000000..2b457f2 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_comics_by_ID.yml @@ -0,0 +1,112 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/18454/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 2ec2fce6b766b67a0dd983bec25f75762dadd671 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:04:12 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"2ec2fce6b766b67a0dd983bec25f75762dadd671","data":{"offset":0,"limit":20,"total":5,"count":5,"results":[{"id":49011,"digitalId":34160,"title":"100th + Anniversary Special (2014) #1","issueNumber":1,"variantDescription":"","description":"Just + in time for the release of their SEVENTH epic motion picture, the Guardians + of the Galaxy are celebrating their 100th Anniversary...by taking on the THE + SILVER GALACTUS!","modified":"2014-07-21T11:39:24-0400","isbn":"","upc":"75960608000700511","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"Just + in time for the release of their SEVENTH epic motion picture, the Guardians + of the Galaxy are celebrating their 100th Anniversary...by taking on the THE + SILVER GALACTUS!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49011/100th_anniversary_special_2014_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/100th-Anniversary-Special-1/digital-comic/34160?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=34160&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/34160?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-07-30T00:00:00-0400"},{"type":"focDate","date":"2014-07-16T00:00:00-0400"},{"type":"unlimitedDate","date":"2015-01-26T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2014-07-30T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/53cd2c7612d2f","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/53cd2c7612d2f","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/b0/536d00217d190","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49011/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy + Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"penciller (cover)"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49011/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49011/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110109","name":"cover + from 100th Anniversary Special (2014) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110110","name":"story + from 100th Anniversary Special (2014) #5","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49011/events","items":[],"returned":0}},{"id":49010,"digitalId":34127,"title":"100th + Anniversary Special (2014) #1","issueNumber":1,"variantDescription":"","description":"CELEBRATE + 100 YEARS OF EARTH'S MIGHTIEST HEROES – THE AVENGERS! Following + the failed Badoon invasion of Earth and America's disappearance into the + Negative Zone, how will the Avengers of 2061 cope?!","modified":"2014-07-16T13:13:34-0400","isbn":"","upc":"75960608000700411","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"CELEBRATE + 100 YEARS OF EARTH'S MIGHTIEST HEROES – THE AVENGERS! Following + the failed Badoon invasion of Earth and America's disappearance into the + Negative Zone, how will the Avengers of 2061 cope?!"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49010/100th_anniversary_special_2014_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/100th-Anniversary-Special-1/digital-comic/34127?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=34127&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/34127?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-07-23T00:00:00-0400"},{"type":"focDate","date":"2014-07-09T00:00:00-0400"},{"type":"unlimitedDate","date":"2015-01-19T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2014-07-23T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/a0/53c406e09649c","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/a0/53c406e09649c","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/40/536cffe2a8b13","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49010/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49010/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49010/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110107","name":"cover + from 100th Anniversary Special (2014) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110108","name":"story + from 100th Anniversary Special (2014) #4","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49010/events","items":[],"returned":0}},{"id":49009,"digitalId":34155,"title":"100th + Anniversary Special (2014) #1","issueNumber":1,"variantDescription":"","description":"- + Have the X-Men of 2061 achieved Xavier''s dream of mutants and humans living + in harmony? Or will there always be a need for the X-Men?","modified":"2014-07-16T13:12:43-0400","isbn":"","upc":"75960608000700311","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"- + Have the X-Men of 2061 achieved Xavier''s dream of mutants and humans living + in harmony? Or will there always be a need for the X-Men?"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49009/100th_anniversary_special_2014_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/100th-Anniversary-Special-1/digital-comic/34155?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=34155&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/34155?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-07-16T00:00:00-0400"},{"type":"focDate","date":"2014-07-02T00:00:00-0400"},{"type":"unlimitedDate","date":"2015-01-12T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2014-07-16T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/a0/53bae9abd8e6f","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/2/a0/53bae9abd8e6f","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/536cffa4cbc98","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49009/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11788","name":"Jennifer + Van Meter","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49009/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49009/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110105","name":"cover + from 100th Anniversary Special (2014) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110106","name":"story + from 100th Anniversary Special (2014) #3","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49009/events","items":[],"returned":0}},{"id":49008,"digitalId":34110,"title":"100th + Anniversary Special (2014) #1","issueNumber":1,"variantDescription":"","description":"It's + 100 years after the wall-crawler's creation, but when the Kingpin has + taken Spider-Man's ultra-powerful techno-symbiote suit, Spider-Man will + need to prove once again why he is the world's greatest super hero.","modified":"2014-07-16T13:12:20-0400","isbn":"","upc":"75960608000700211","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"It's + 100 years after the wall-crawler's creation, but when the Kingpin has + taken Spider-Man's ultra-powerful techno-symbiote suit, Spider-Man will + need to prove once again why he is the world's greatest super hero."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49008/100th_anniversary_special_2014_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"purchase","url":"http://comicstore.marvel.com/100th-Anniversary-Special-1/digital-comic/34110?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=34110&utm_campaign=apiRef&utm_source=abcd"},{"type":"inAppLink","url":"https://applink.marvel.com/issue/34110?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-07-09T00:00:00-0400"},{"type":"focDate","date":"2014-06-25T00:00:00-0400"},{"type":"unlimitedDate","date":"2015-01-05T00:00:00-0500"},{"type":"digitalPurchaseDate","date":"2014-07-09T00:00:00-0400"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/20/53b1be72eec81","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/c/20/53b1be72eec81","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/c0/536cff66debd3","extension":"jpg"}],"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49008/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9432","name":"Sean + Ryan","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49008/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49008/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110103","name":"cover + from 100th Anniversary Special (2014) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110104","name":"story + from 100th Anniversary Special (2014) #2","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49008/events","items":[],"returned":0}},{"id":49007,"digitalId":34097,"title":"100th + Anniversary Special (2014) #1","issueNumber":1,"variantDescription":"","description":"A + REMARKABLE ARTIFACT FROM THE FUTURE OF MARVEL COMICS! It''s 2061 and the world + of the Fantastic Four has turned upside-down, complete with the granddaughter + of Doom...and the Richards-Banner twins?","modified":"2014-07-16T13:11:56-0400","isbn":"","upc":"75960608000700111","diamondCode":"","ean":"","issn":"","format":"Comic","pageCount":32,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"A + REMARKABLE ARTIFACT FROM THE FUTURE OF MARVEL COMICS! It's 2061 and the + world of the Fantastic Four has turned upside-down, complete with the granddaughter + of Doom...and the Richards-Banner twins"}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","urls":[{"type":"detail","url":"http://marvel.com/comics/issue/49007/100th_anniversary_special_2014_1?utm_campaign=apiRef&utm_source=abcd"},{"type":"reader","url":"http://marvel.com/digitalcomics/view.htm?iid=34097&utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},"variants":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"}],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"2014-07-02T00:00:00-0400"},{"type":"focDate","date":"2014-06-18T00:00:00-0400"},{"type":"unlimitedDate","date":"2015-11-10T00:00:00-0500"}],"prices":[{"type":"printPrice","price":3.99},{"type":"digitalPurchasePrice","price":3.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/53a85058a61f0","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/20/53a85058a61f0","extension":"jpg"},{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/30/536cff2402418","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49007/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49007/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49007/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110101","name":"cover + from 100th Anniversary Special (2014) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110102","name":"story + from 100th Anniversary Special (2014) #1","type":"interiorStory"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/49007/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_creators_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_creators_by_ID.yml new file mode 100644 index 0000000..3795dfd --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_creators_by_ID.yml @@ -0,0 +1,357 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/18454/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 5208922e2d5b70452e8b13a04068444f00e2b19e + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:04:14 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"5208922e2d5b70452e8b13a04068444f00e2b19e","data":{"offset":0,"limit":20,"total":5,"count":5,"results":[{"id":485,"firstName":"Andy","middleName":"","lastName":"Lanning","suffix":"","fullName":"Andy + Lanning","modified":"2014-11-22T15:06:57-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/40/4bb827ae64631","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","comics":{"available":436,"collectionURI":"http://gateway.marvel.com/v1/public/creators/485/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49180","name":"Marvel + 100th Anniversary (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20824","name":"Amazing + Spider-Man (1999) #552"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20825","name":"Amazing + Spider-Man (1999) #553"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20826","name":"Amazing + Spider-Man (1999) #554"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21322","name":"Amazing + Spider-Man (1999) #562"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21323","name":"Amazing + Spider-Man (1999) #563"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21503","name":"Amazing + Spider-Man (1999) #565"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21504","name":"Amazing + Spider-Man (1999) #566"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/21702","name":"Amazing + Spider-Man (1999) #567"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22865","name":"Amazing + Spider-Man (1999) #581"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23076","name":"Amazing + Spider-Man (1999) #582"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/23927","name":"Amazing + Spider-Man (1999) #592"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24133","name":"Amazing + Spider-Man (1999) #593"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24134","name":"Amazing + Spider-Man (1999) #594"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24135","name":"Amazing + Spider-Man (1999) #595"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24136","name":"Amazing + Spider-Man (1999) #595 (GRANOV VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24407","name":"Amazing + Spider-Man (1999) #600"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/29303","name":"Amazing + Spider-Man (1999) #600 (2ND PRINTING VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24413","name":"Amazing + Spider-Man (1999) #606"}],"returned":20},"series":{"available":152,"collectionURI":"http://gateway.marvel.com/v1/public/creators/485/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2984","name":"Amazing + Spider-Man Annual (1964 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5958","name":"Amazing + Spider-Man Annual (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/5376","name":"Amazing + Spider-Man Family (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6604","name":"Amazing + Spider-Man: Extra! (2008 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18285","name":"Annihilation + (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/33346","name":"Annihilation + Omnibus (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3061","name":"Annihilation: + Conquest (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19274","name":"Annihilation: + Conquest (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24256","name":"Annihilation: + The Complete Collection Vol. 1 (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13025","name":"Annihilators + (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15433","name":"Annihilators + (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14818","name":"Annihilators: + Earthfall (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/744","name":"Astonishing + X-Men (2004 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/354","name":"Avengers + (1998 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/227","name":"Avengers + Vol. 2: Red Zone (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1197","name":"Avengers + Vol. 4: Lionheart of Avalon (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/271","name":"Avengers + Vol. II: Red Zone (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17966","name":"AVENGERS/IRON + MAN: FIRST SIGN TPB (2013)"}],"returned":20},"stories":{"available":488,"collectionURI":"http://gateway.marvel.com/v1/public/creators/485/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/938","name":"1 + of ? - Distant Music","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/939","name":"1 + of ? - Distant Music","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/940","name":"2 + of ? - Distant Music","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/941","name":"2 + of ? - Distant Music","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/943","name":"3 + of ? - Distant Music","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/944","name":"Cover + #944","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/945","name":"Interior + #945","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/946","name":"5 + of 6 - Distant Music","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/947","name":"5 + of 6 - Distant Music","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/948","name":"6 + of 6 - Distant Music","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/949","name":"6 + of 6 - Distant Music","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/950","name":"1 + of 6 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/951","name":"1 + of 6 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/952","name":"2 + of 6 -","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/953","name":"2 + of 6 -","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/954","name":"3 + of 6 - Hulk Pt. 3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/955","name":"3 + of 6 - Hulk Pt. 3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/957","name":"1 + of ?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/959","name":"2 + of ?","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/961","name":"3 + of ?","type":"interiorStory"}],"returned":20},"events":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/creators/485/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/303","name":"Age + of X"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/293","name":"Annihilation: + Conquest"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/238","name":"Civil + War"},{"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/295","name":"Realm + of Kings"},{"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/305","name":"Spider-Island"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/294","name":"The + Thanos Imperative"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/276","name":"War + of Kings"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"}],"returned":13},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/485/andy_lanning?utm_campaign=apiRef&utm_source=abcd"}]},{"id":13138,"firstName":"In-Hyuk","middleName":"","lastName":"Lee","suffix":"","fullName":"In-Hyuk + Lee","modified":"2023-03-09T10:18:34-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/13138","comics":{"available":129,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13138/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/80067","name":"Future + Fight Firsts: Crescent and Io (2019) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49180","name":"Marvel + 100th Anniversary (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/103225","name":"A.X.E.: + Judgment Day (2022) #5 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78966","name":"Absolute + Carnage (2019) #5 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89565","name":"Alien + (2021) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89568","name":"Alien + (2021) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89571","name":"Alien + (2021) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89574","name":"Alien + (2021) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89576","name":"Alien + (2021) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89577","name":"Alien + (2021) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/89566","name":"Alien + Vol. 1: Bloodlines (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84357","name":"Avengers + (2018) #39"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/95977","name":"Avengers + (2018) #47 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/105659","name":"Avengers + (2018) #64 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48749","name":"Avengers + World (2014) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77632","name":"Black + Cat (2019) #3 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73400","name":"Black + Order (2018) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/73401","name":"Black + Order (2018) #5"}],"returned":20},"series":{"available":91,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13138/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34459","name":"A.X.E.: + Judgment Day (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27272","name":"Absolute + Carnage (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30863","name":"Alien + (2021 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/30864","name":"Alien + Vol. 1: Bloodlines (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24229","name":"Avengers + (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18398","name":"Avengers + World (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19601","name":"Avengers: + Time Runs Out Vol. 4 (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27314","name":"Black + Cat (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26475","name":"Black + Order (2018 - 2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24291","name":"Black + Panther (2018 - 2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27618","name":"Black + Panther and the Agents of Wakanda (2019 - 2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/34294","name":"Blade: + Vampire Nation (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31545","name":"Captain + America Anniversary Tribute (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26673","name":"Captain + Marvel (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29153","name":"Conan: + Serpent War (2019 - 2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31088","name":"Dark + Ages (2021 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31966","name":"Darkhawk: + Heart Of The Hawk (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31898","name":"Death + of Doctor Strange (2021 - 2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32952","name":"Devil''s + Reign (2021 - 2022)"}],"returned":20},"stories":{"available":144,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13138/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107332","name":"cover + from Thanos/Inhumans Event (2013) #1 (TBD ARTIST 2 VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107501","name":"cover + from The Deadly Foes of Spider-Man (2013) #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107925","name":"cover + from Thanos/Inhumans Event (2013) #2 (GENERALS VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107937","name":"cover + from Thanos/Inhumans Event (2013) #4 (GENERALS VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/107943","name":"cover + from Thanos/Inhumans Event (2013) #5 (GENERALS VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108092","name":"story + from Superior Spider-Man Team-Up: (Issues 1-6) (2014)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109589","name":"cover + from Avengers World (2013) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/109633","name":"cover + from Iron Man (2012) #28","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110103","name":"cover + from 100th Anniversary Special (2014) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110104","name":"story + from 100th Anniversary Special (2014) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110105","name":"cover + from 100th Anniversary Special (2014) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110106","name":"story + from 100th Anniversary Special (2014) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110446","name":"story + from 100th Anniversary Special (2015)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110993","name":"cover + from The Amazing Spider-Man (1999) #700.5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/111598","name":"cover + from Uncanny Avengers (2012) #18 (TBD ARTIST SKETCH VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/111790","name":"cover + from Winter Soldier: TBD (2014) #1 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/112475","name":"Dead + Rising 3 #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116107","name":"cover + from New Avengers (2013) #31","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/116125","name":"cover + from New Avengers: Time Runs Out (2016)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/118435","name":"cover + from The Superior Foes of Spider-Man (2015)","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13138/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/13138/in-hyuk_lee?utm_campaign=apiRef&utm_source=abcd"}]},{"id":12392,"firstName":"David","middleName":"","lastName":"Lopez","suffix":"","fullName":"David + Lopez","modified":"2016-09-12T10:47:07-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/creators/12392","comics":{"available":179,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12392/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49180","name":"Marvel + 100th Anniversary (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/43501","name":"A+X + (2012) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56383","name":"A-Force + Presents Vol. 4 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55094","name":"A-Force + Presents Vol. 2 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55093","name":"A-Force + Presents Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55095","name":"A-FORCE + PRESENTS VOL. 3 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56424","name":"All-New + Wolverine (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56425","name":"All-New + Wolverine (2015) #1 (Adams Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56430","name":"All-New + Wolverine (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58869","name":"All-New + Wolverine (2015) #2 (Bengal 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56432","name":"All-New + Wolverine (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/59165","name":"All-New + Wolverine (2015) #3 (Bengal 2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56435","name":"All-New + Wolverine (2015) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56436","name":"All-New + Wolverine (2015) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58194","name":"All-New + Wolverine (2015) #5 (Michael Cho Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56437","name":"All-New + Wolverine (2015) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/58641","name":"All-New + Wolverine (2015) #6 (Tbd Artist Wop Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56444","name":"All-New + Wolverine (2015) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56445","name":"All-New + Wolverine (2015) #14"}],"returned":20},"series":{"available":78,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12392/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16450","name":"A+X + (2012 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20359","name":"A-Force + Presents Vol. 1 (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20360","name":"A-Force + Presents Vol. 2 (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20361","name":"A-FORCE + PRESENTS VOL. 3 TPB (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20676","name":"A-Force + Presents Vol. 4 (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20682","name":"All-New + Wolverine (2015 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20643","name":"All-New + Wolverine Vol. 1: The Four Sisters (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24394","name":"All-New + Wolverine Vol. 6: Old Woman Laura (2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/32861","name":"Amazing + Spider-Man By Wells & Romita Jr. Vol. 2: The New Sinister (2022)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22997","name":"America + (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/24229","name":"Avengers + (2018 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27618","name":"Black + Panther and the Agents of Wakanda (2019 - 2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26673","name":"Captain + Marvel (2019 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18455","name":"Captain + Marvel (2014 - 2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19349","name":"Captain + Marvel & The Carol Corps (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20301","name":"Captain + Marvel & the Carol Corps (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18437","name":"Captain + Marvel Vol. 1: Higher, Further, Faster, More (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18438","name":"Captain + Marvel Vol. 2: Stay Fly (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22003","name":"Captain + Marvel: Earth''s Mightiest Hero Vol. 3 (2017)"}],"returned":20},"stories":{"available":213,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12392/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57385","name":"Interior + #57385","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/80362","name":"Interior + #80362","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83424","name":"WIDOW + MAKER (2010) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/83426","name":"WIDOW + MAKER (2010) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92267","name":"Interior + #92267","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92534","name":"X-Men + (2010) #37","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92544","name":"X-Men + (2010) #36","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92552","name":"X-Men + (2010) #33","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92554","name":"X-Men + (2010) #32","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92558","name":"X-Men + (2010) #31","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92560","name":"X-MEN + (2010) #30","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/92574","name":"X-Men + (2010) #35","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/96983","name":"Interior + #96983","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/97188","name":"A+X + (2012) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105878","name":"story + from X-Termination Alpha (2013) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/105880","name":"story + from X-Termination Omega (2013) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/108866","name":"story + from X-Men: Battle of the Atom (2014)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110051","name":"cover + from Captain Marvel (2014)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110052","name":"story + from Captain Marvel (2014)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110053","name":"cover + from Captain Marvel (2015)","type":"cover"}],"returned":20},"events":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/12392/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/336","name":"Secret + Empire"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/323","name":"Secret + Wars (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/308","name":"X-Men: + Regenesis"}],"returned":3},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/12392/david_lopez?utm_campaign=apiRef&utm_source=abcd"}]},{"id":9432,"firstName":"Sean","middleName":"","lastName":"Ryan","suffix":"","fullName":"Sean + Ryan","modified":"2016-08-11T11:42:07-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/70/4bb493017fec8","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/creators/9432","comics":{"available":60,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9432/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49180","name":"Marvel + 100th Anniversary (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/48981","name":"A+X + Vol. 3: = Outstanding (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50586","name":"Amazing + Spider-Man Annual (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51334","name":"Amazing + Spider-Man Annual (2014) #1 (Bianchi Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54830","name":"Avengers: + No More Bullying (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/96131","name":"The + Vitals: True EMS Stories (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/93069","name":"The + Vitals: True Nurse Stories (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/77494","name":"M&M’s, + Hazelnut Hysteria: One-Shot (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2310","name":"Exiles + (2001) #68"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/2426","name":"Exiles + Vol. 11: Time Breakers (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84153","name":"Gwen + Stacy (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84462","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84463","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84464","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84685","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/85654","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84461","name":"Gwen + Stacy (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50618","name":"Iron + Man Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25743","name":"Marvel + Comics 1: 70th Anniversary Edition (2009) #1"}],"returned":20},"series":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9432/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18436","name":"A+X + Vol. 3: = Outstanding (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18900","name":"Amazing + Spider-Man Annual (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20270","name":"Avengers: + No More Bullying (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/479","name":"Exiles + (2001 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1462","name":"Exiles + Vol. 11: Time Breakers (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/29648","name":"Gwen + Stacy (2020)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18921","name":"Iron + Man Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/27743","name":"M&M’s, + Hazelnut Hysteria: One-Shot (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18491","name":"Marvel + 100th Anniversary (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/7994","name":"Marvel + Comics 1: 70th Anniversary Edition (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/26947","name":"Marvel + Super Hero Adventures: Spider-Man (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20844","name":"Nova + (2015 - 2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/19069","name":"Nova + Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20641","name":"Nova: + The Human Rocket Vol. 1 - Burn Out (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20642","name":"Nova: + The Human Rocket Vol. 2 - After Burn (2016)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23101","name":"Peter + Parker: The Spectacular Spider-Man (2017 - 2018)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/25965","name":"Peter + Parker: The Spectacular Spider-Man Vol. 5 - Spider-Geddon (2019)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22535","name":"Prowler + (2016 - 2017)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/22536","name":"PROWLER: + THE CLONE CONSPIRACY TPB (2017)"}],"returned":20},"stories":{"available":97,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9432/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1549","name":"3 + of 3 - Destroy All Monsters","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/56745","name":"Cover + #56745","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/56746","name":"Interior + #56746","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57283","name":"Cover + #57283","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57284","name":"Interior + #57284","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59597","name":"Cover + #59597","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59598","name":"Interior + #59598","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59599","name":"Cover + #59599","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59600","name":"Interior + #59600","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59601","name":"Cover + #59601","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59602","name":"Interior + #59602","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59603","name":"Cover + #59603","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/59604","name":"Interior + #59604","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60651","name":"Cover + #60651","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/60652","name":"Interior + #60652","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110050","name":"story + from A+X (2014)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110104","name":"story + from 100th Anniversary Special (2014) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110446","name":"story + from 100th Anniversary Special (2015)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113067","name":"story + from Uncanny X-Men Special (2014) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113256","name":"story + from Amazing Spider-Man Annual (2014) #1","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/9432/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/332","name":"Dead + No More: The Clone Conspiracy"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/9432/sean_ryan?utm_campaign=apiRef&utm_source=abcd"}]},{"id":11788,"firstName":"Jennifer","middleName":"","lastName":"Van + Meter","suffix":"","fullName":"Jennifer Van Meter","modified":"2013-03-15T11:53:20-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/creators/11788","comics":{"available":30,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11788/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40128","name":"Amazing + Spider-Man (1999) #700"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30021","name":"Amazing + Spider-Man Presents: Black Cat (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30022","name":"Amazing + Spider-Man Presents: Black Cat (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30023","name":"Amazing + Spider-Man Presents: Black Cat (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30024","name":"Amazing + Spider-Man Presents: Black Cat (2010) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/42505","name":"SPIDER-MAN: + DYING WISH PREMIERE HC (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41686","name":"Avengers: + Earth''s Mightiest Heroes Adventures (Digest)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40422","name":"Avengers: + Solo (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41522","name":"Avengers: + Solo (2011) #1 (Movie Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40416","name":"Avengers: + Solo (2011) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40419","name":"Avengers: + Solo (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40418","name":"Avengers: + Solo (2011) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41903","name":"Avengers: + Solo (2011) #4 (Movie Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40417","name":"Avengers: + Solo (2011) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39621","name":"Fear + Itself: Spider-Man (Hardcover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40104","name":"Fear + Itself: The Worthy (2011) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36741","name":"Marvel + Adventures Super Heroes (2010) #21"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/41698","name":"Marvel + Universe Avengers: Earth''s Mightiest Heroes (2012) #9"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/25987","name":"Miss + America Comics 70th Anniversary Special (2009) #1"}],"returned":20},"series":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11788/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/454","name":"Amazing + Spider-Man (1999 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9835","name":"Amazing + Spider-Man Presents: Black Cat (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15546","name":"Avengers: + Earth''s Mightiest Heroes Adventures (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/15010","name":"Avengers: + Solo (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14589","name":"Fear + Itself: Spider-Man (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13827","name":"Fear + Itself: The Worthy (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/12877","name":"Iron + Age (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/15549","name":"Marvel + Universe Avengers: Earth''s Mightiest Heroes (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8126","name":"Miss + America Comics 70th Anniversary Special (2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16693","name":"Punisher: + War Zone (2012 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/17539","name":"Savage + Wolverine (2013 - 2014)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18384","name":"Savage + Wolverine (2015)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/16250","name":"SPIDER-MAN: + DYING WISH PREMIERE HC (2011 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14019","name":"The + Punisher (2011 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/18527","name":"Thunderbolts + (2006 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9171","name":"Timely + 70th Anniversary Collection (2010 - Present)"}],"returned":18},"stories":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11788/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/57262","name":"Interior + #57262","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/62876","name":"Interior + #62876","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68869","name":"Interior + #68869","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68871","name":"Interior + #68871","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68873","name":"Interior + #68873","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/68875","name":"Interior + #68875","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/77726","name":"Interior + #77726","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78903","name":"Interior + #78903","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/78917","name":"Thunderbolts + (2006) #158","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81483","name":"Interior + #81483","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/81786","name":"Interior + #81786","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/89924","name":"Interior + #89924","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90054","name":"Interior + #90054","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90056","name":"Interior + #90056","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/90650","name":"Interior + #90650","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91005","name":"Fear + Itself: the worthy interior","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91054","name":"Interior + #91054","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91655","name":"Interior + #91655","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91657","name":"Interior + #91657","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91659","name":"Interior + #91659","type":"interiorStory"}],"returned":20},"events":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/creators/11788/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/302","name":"Fear + Itself"}],"returned":1},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/11788/jennifer_van_meter?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_events_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_events_by_ID.yml new file mode 100644 index 0000000..83d6a64 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_events_by_ID.yml @@ -0,0 +1,312 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/2116/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 91e11426ff1921b7ce9860d28a645c68b8019a61 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:07:09 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"91e11426ff1921b7ce9860d28a645c68b8019a61","data":{"offset":0,"limit":20,"total":3,"count":3,"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Acts_of_Vengeance!?utm_campaign=apiRef&utm_source=abcd"}],"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":102,"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":"Danilo + Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2043","name":"Eliot + Brown","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich + Buckler","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"penciler"},{"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/452","name":"Virtual + Calligr","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/954","name":"Gerry + Conway","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/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/105","name":"Sal + Buscema","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3415","name":"John + Calimee","role":"penciller (cover)"}],"returned":20},"characters":{"available":108,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009435","name":"Alicia + Masters"},{"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/1011456","name":"Balder"},{"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 + (Abner Jenkins)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009329","name":"Ben + Grimm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black + Knight (Sir Percy of Scandia)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black + Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom + Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009167","name":"Bruce + Banner"},{"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/1011027","name":"Captain + Universe"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009234","name":"Chameleon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009239","name":"Clea"}],"returned":20},"stories":{"available":161,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12960","name":"Fantastic + Four (1961) #334","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":"Fantastic + Four (1961) #335","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":"Fantastic + Four (1961) #336","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":"Amazing + Spider-Man (1963) #326","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14057","name":"Amazing + Spider-Man (1963) #326","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14058","name":"Amazing + Spider-Man (1963) #327","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":"Amazing + Spider-Man (1963) #328","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":"Amazing + Spider-Man (1963) #329","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14063","name":"Amazing + Spider-Man (1963) #329","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14916","name":"AVENGERS + (1963) #311","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","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","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14921","name":"Thieves + Honor","type":"interiorStory"}],"returned":20},"comics":{"available":53,"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/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/17774","name":"Avengers + Annual (1967) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17795","name":"West + Coast Avengers (1985) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17796","name":"West + Coast Avengers (1985) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17797","name":"West + Coast Avengers (1985) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17695","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964) #275"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8269","name":"Daredevil + (1964) #276"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20170","name":"Doctor + Strange, Sorcerer Supreme (1988) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20171","name":"Doctor + Strange, Sorcerer Supreme (1988) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20172","name":"Doctor + Strange, Sorcerer Supreme (1988) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13155","name":"Fantastic + Four (1961) #334"}],"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/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/3462","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964 - 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/1987","name":"The + Amazing Spider-Man (1963 - 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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3630","name":"West + Coast Avengers (1985 - 1994)"}],"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":29,"title":"Infinity War","description":"The Magus, the purged, + evil side of Adam Warlock believed to have been dead, has returned in order + to collect the Infinity Gems and recreate the Infinity Gauntlet itself. He + sent evil doppelgangers of Marvel''s superheroes to attack and usurp the originals. + Thanos, exiled since his defeat during the Infinity Gauntlet event, learned + of the Magus'' plans and set out to aid Adam Warlock and the heroes in defending + the universe.","resourceURI":"http://gateway.marvel.com/v1/public/events/29","urls":[{"type":"detail","url":"http://marvel.com/comics/events/29/infinity_war?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Infinity_War?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2014-06-10T16:08:04-0400","start":"1992-06-10 + 00:00:00","end":"1992-11-10 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/10/51ca14b3dce00","extension":"jpg"},"creators":{"available":94,"collectionURI":"http://gateway.marvel.com/v1/public/events/29/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2632","name":"Stein","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1935","name":"Paul + Becton","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2112","name":"Larry + Alexander","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1185","name":"Pat + Broderick","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/379","name":"Greg + Capullo","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/270","name":"Gene + Colan","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4201","name":"Bob + Almond","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11063","name":"Terry + Kevin Austin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3701","name":"Ken + Branch","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5823","name":"Danilo + 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/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/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/2687","name":"Jon + Babcock","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3626","name":"Pat + Brosseau","role":"letterer"},{"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/2089","name":"Joey + Cavalieri","role":"writer"}],"returned":20},"characters":{"available":58,"collectionURI":"http://gateway.marvel.com/v1/public/events/29/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam + Warlock"},{"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/1009159","name":"Archangel"},{"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/1009175","name":"Beast"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black + Knight (Sir Percy of Scandia)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009218","name":"Calypso"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009220","name":"Captain + America"},{"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/1009257","name":"Cyclops"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009262","name":"Daredevil"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009269","name":"Death"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009274","name":"Diamondback + (Rachel Leighton)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor + Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009297","name":"Falcon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic + Four"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009312","name":"Galactus"}],"returned":20},"stories":{"available":154,"collectionURI":"http://gateway.marvel.com/v1/public/events/29/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13094","name":"Destroy!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13095","name":"The + Enemy Within!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13096","name":"Fantastic + Forum","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13097","name":"Bullpen + Bulletins","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13098","name":"Pay + As Low As 96¢ Per Copy","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13099","name":"[Ads]","type":"ad"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13100","name":"At + the Mercy of the Puppet Master!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13101","name":"By + Reed ... Betrayed!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13102","name":"Fantastic + Forum","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13103","name":"Bullpen + Bulletins","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13104","name":"Get + 4 Titles For the Price of 3.","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13105","name":"[Ads]","type":"ad"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13106","name":"Day + of the Doppelgangers","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13107","name":"Day + of the Dark Side!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13108","name":"Fantastic + Forum","type":"letters"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13109","name":"Bullpen + Bulletins","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13110","name":"Get + 4 Titles For the Price of 3.","type":"promo"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13111","name":"[Ads]","type":"ad"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13112","name":"[Long + Live Malice!]","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13113","name":"With + Malice Toward All!","type":"interiorStory"}],"returned":20},"comics":{"available":40,"collectionURI":"http://gateway.marvel.com/v1/public/events/29/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12650","name":"Alpha + Flight (1983) #110"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12651","name":"Alpha + Flight (1983) #111"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12652","name":"Alpha + Flight (1983) #112"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7789","name":"Captain + America (1968) #408"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8308","name":"Daredevil + (1964) #310"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20204","name":"Doctor + Strange, Sorcerer Supreme (1988) #42"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20205","name":"Doctor + Strange, Sorcerer Supreme (1988) #43"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20206","name":"Doctor + Strange, Sorcerer Supreme (1988) #44"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20207","name":"Doctor + Strange, Sorcerer Supreme (1988) #45"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20208","name":"Doctor + Strange, Sorcerer Supreme (1988) #46"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20209","name":"Doctor + Strange, Sorcerer Supreme (1988) #47"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13190","name":"Fantastic + Four (1961) #366"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13191","name":"Fantastic + Four (1961) #367"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13192","name":"Fantastic + Four (1961) #368"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13193","name":"Fantastic + Four (1961) #369"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13195","name":"Fantastic + Four (1961) #370"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9292","name":"Infinity + War (1992) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9293","name":"Infinity + War (1992) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9294","name":"Infinity + War (1992) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9295","name":"Infinity + War (1992) #4"}],"returned":20},"series":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/events/29/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"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 + (1964 - 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/2024","name":"Infinity + War (1992)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3289","name":"INFINITY + WAR TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2039","name":"Marvel + Comics Presents (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/2069","name":"Spider-Man + (1990 - 1998)"},{"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/3645","name":"Wonder + Man (1991 - 1994)"}],"returned":13},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/151","name":"Maximum + Carnage"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/253","name":"Infinity + Gauntlet"}},{"id":271,"title":"Secret Wars II","description":"The omnipotent + Beyonder comes to Earth to better understand the concept of desire as the + heroes assemble to combat the threat he poses.","resourceURI":"http://gateway.marvel.com/v1/public/events/271","urls":[{"type":"detail","url":"http://marvel.com/comics/events/271/secret_wars_ii?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Secret_Wars_II?utm_campaign=apiRef&utm_source=abcd"}],"modified":"2015-01-21T17:09:37-0500","start":"1985-07-10 + 00:00:00","end":"2009-05-13 00:00:00","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/f/60/51cdec7c4d64d","extension":"jpg"},"creators":{"available":85,"collectionURI":"http://gateway.marvel.com/v1/public/events/271/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3389","name":"Ian + Akin","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5823","name":"Danilo + Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9985","name":"Kim + Demulder","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1865","name":"Diana + Albers","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3632","name":"Lois + Buhalis","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/651","name":"Brent + Anderson","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2047","name":"Craig + Anderson","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3652","name":"Mark + Badger","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich + Buckler","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1612","name":"John + Buscema","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7119","name":"Paul + Chadwick","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5764","name":"Ron + Frenz","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2263","name":"James + Fry","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1935","name":"Paul + Becton","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/6049","name":"Danny + Fingeroth","role":"writer"}],"returned":20},"characters":{"available":68,"collectionURI":"http://gateway.marvel.com/v1/public/events/271/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010354","name":"Adam + Warlock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010370","name":"Alpha + Flight"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009165","name":"Avengers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011138","name":"Beyonder"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black + Knight (Sir Percy of Scandia)"},{"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/1009224","name":"Captain + Marvel (Mar-Vell)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009232","name":"Ch''od"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009241","name":"Cloak"},{"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/1009453","name":"Dani + Moonstar"},{"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/1011023","name":"Defenders"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009282","name":"Doctor + Strange"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009299","name":"Fantastic + Four"}],"returned":20},"stories":{"available":111,"collectionURI":"http://gateway.marvel.com/v1/public/events/271/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12838","name":"Inwards + to Infinity!","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12839","name":"Towards + Infinity!","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12844","name":"Cover + #12844","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12845","name":"Hero","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12850","name":"Doctor + Doom Versus the Beyonder","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12851","name":"Full + Circle","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13922","name":"Amazing + Spider-Man (1963) #268","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13923","name":"This + Gold is Mine!","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13934","name":"Amazing + Spider-Man (1963) #273","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13935","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13936","name":"Amazing + Spider-Man (1963) #274","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13937","name":"","type":""},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14801","name":"Avengers + (1963) #260","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14802","name":"Assault + On Sanctuary II","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14803","name":"Avengers + (1963) #261","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14804","name":"Earth + and Beyond","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14811","name":"Avengers + (1963) #265","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14812","name":"Eve + of Destruction","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14813","name":"Avengers + (1963) #266","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14814","name":"And + the War''s Desolation","type":"interiorStory"}],"returned":20},"comics":{"available":41,"collectionURI":"http://gateway.marvel.com/v1/public/events/271/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12688","name":"Alpha + Flight (1983) #28"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7131","name":"Avengers + (1963) #260"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7132","name":"Avengers + (1963) #261"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7136","name":"Avengers + (1963) #265"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7137","name":"Avengers + (1963) #266"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/7689","name":"Captain + America (1968) #308"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/62785","name":"Cloak + and Dagger (1985) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8211","name":"Daredevil + (1964) #223"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20452","name":"Dazzler + (1981) #40"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20321","name":"Defenders + (1972) #152"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20158","name":"Doctor + Strange (1974) #74"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13097","name":"Fantastic + Four (1961) #282"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13100","name":"Fantastic + Four (1961) #285"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13103","name":"Fantastic + Four (1961) #288"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9123","name":"Incredible + Hulk (1962) #312"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/9435","name":"Iron + Man (1968) #197"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10367","name":"New + Mutants (1983) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10373","name":"New + Mutants (1983) #36"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10374","name":"New + Mutants (1983) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14556","name":"Peter + Parker, the Spectacular Spider-Man (1976) #111"}],"returned":20},"series":{"available":22,"collectionURI":"http://gateway.marvel.com/v1/public/events/271/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/2116","name":"Alpha + Flight (1983 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1996","name":"Captain + America (1968 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14157","name":"Cloak + and Dagger (1985 - 1987)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2002","name":"Daredevil + (1964 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3745","name":"Dazzler + (1981 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3743","name":"Defenders + (1972 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3740","name":"Doctor + Strange (1974 - 1988)"},{"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/15186","name":"Power + Pack (1984 - 1991)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3695","name":"Quasar + (1989 - 1994)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3694","name":"Secret + Wars II (1985)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/6860","name":"SECRET + WARS II OMNIBUS HC BYRNE COVER [DM ONLY] (2009 - Present)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1987","name":"The + Amazing Spider-Man (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3667","name":"Thing + (1983 - 1986)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2083","name":"Thor + (1966 - 1996)"}],"returned":20},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/events/263","name":"Mutant + Massacre"},"previous":{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_a_series_stories_by_ID.yml b/spec/vcr/Harkness_SeriesResource/gets_a_series_stories_by_ID.yml new file mode 100644 index 0000000..dbcdcb1 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_a_series_stories_by_ID.yml @@ -0,0 +1,86 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series/18454/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - a8a95f344d246c2cece51987c00134f9542ef6fc + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:04:13 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"a8a95f344d246c2cece51987c00134f9542ef6fc","data":{"offset":0,"limit":20,"total":10,"count":10,"results":[{"id":110101,"title":"cover + from 100th Anniversary Special (2014) #1","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110101","type":"cover","modified":"2014-06-23T12:09:14-0400","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110101/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110101/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110101/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110101/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110101/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}},{"id":110102,"title":"story from 100th Anniversary + Special (2014) #1","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110102","type":"story","modified":"2014-06-23T12:10:26-0400","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110102/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110102/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110102/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110102/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110102/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}},{"id":110103,"title":"cover from 100th Anniversary + Special (2014) #2","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110103","type":"cover","modified":"2014-06-30T15:47:41-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110103/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"penciller (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110103/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110103/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110103/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110103/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"}},{"id":110104,"title":"story from 100th Anniversary + Special (2014) #2","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110104","type":"story","modified":"2014-06-30T15:49:03-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110104/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9432","name":"Sean + Ryan","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110104/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110104/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110104/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110104/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"}},{"id":110105,"title":"cover from 100th Anniversary + Special (2014) #3","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110105","type":"cover","modified":"2014-07-07T14:42:37-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110105/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"penciller (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110105/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110105/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110105/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110105/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"}},{"id":110106,"title":"story from 100th Anniversary + Special (2014) #3","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110106","type":"story","modified":"2014-07-07T14:43:52-0400","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110106/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11788","name":"Jennifer + Van Meter","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110106/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110106/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110106/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110106/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"}},{"id":110107,"title":"cover from 100th Anniversary + Special (2014) #4","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110107","type":"cover","modified":"2014-07-14T12:37:36-0400","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110107/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110107/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110107/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110107/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110107/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"}},{"id":110108,"title":"story from 100th Anniversary + Special (2014) #4","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110108","type":"story","modified":"2014-07-14T12:41:13-0400","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110108/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110108/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110108/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110108/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110108/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"}},{"id":110109,"title":"cover from 100th Anniversary + Special (2014) #5","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110109","type":"cover","modified":"2014-07-21T11:08:10-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110109/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"penciller (cover)"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110109/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110109/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110109/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110109/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"}},{"id":110110,"title":"story from 100th Anniversary + Special (2014) #5","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/110110","type":"story","modified":"2014-07-21T11:38:09-0400","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110110/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy + Lanning","role":"writer"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110110/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110110/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","name":"100th + Anniversary Special (2014)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110110/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/110110/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_series.yml b/spec/vcr/Harkness_SeriesResource/gets_series.yml new file mode 100644 index 0000000..2837982 --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_series.yml @@ -0,0 +1,446 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 4feead6f7a7d2ba72740c55e0afdfd902b27ddde + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:07:41 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"4feead6f7a7d2ba72740c55e0afdfd902b27ddde","data":{"offset":0,"limit":20,"total":13415,"count":20,"results":[{"id":31445,"title":" + Fantastic Four by Dan Slott Vol. 1 (2021)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/31445","urls":[{"type":"detail","url":"http://marvel.com/comics/series/31445/_fantastic_four_by_dan_slott_vol_1_2021?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2021,"endYear":2021,"rating":"","type":"collection","modified":"2020-07-29T09:04:18-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/31445/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/series/31445/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/31445/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/205070","name":"cover + from FANTASTIC FOUR BY DAN SLOTT VOL. 1 HC (2021) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/205071","name":"story + from FANTASTIC FOUR BY DAN SLOTT VOL. 1 HC (2021) #1","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/31445/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/91992","name":" + Fantastic Four by Dan Slott Vol. 1 (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/31445/events","items":[],"returned":0},"next":null,"previous":null},{"id":26024,"title":" + Superior Spider-Man Vol. 2: Otto-matic (2019)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/26024","urls":[{"type":"detail","url":"http://marvel.com/comics/series/26024/_superior_spider-man_vol_2_otto-matic_2019?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2019,"endYear":2019,"rating":"","type":"collection","modified":"2019-12-13T16:23:45-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/26024/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/942","name":"Mike + Hawthorne","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/437","name":"Lan + Medina","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4430","name":"Jeff + Youngquist","role":"editor"}],"returned":4},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/26024/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/26024/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158776","name":"cover + from SUPERIOR SPIDER-MAN VOL. 2 TPB (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/158777","name":"story + from SUPERIOR SPIDER-MAN VOL. 2 TPB (2020) #2","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/26024/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/71400","name":" + Superior Spider-Man Vol. 2: Otto-matic (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/26024/events","items":[],"returned":0},"next":null,"previous":null},{"id":18454,"title":"100th + Anniversary Special (2014)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/18454","urls":[{"type":"detail","url":"http://marvel.com/comics/series/18454/100th_anniversary_special_2014?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2014,"endYear":2014,"rating":"Rated + T","type":"limited","modified":"2019-10-01T18:42:55-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/4/b0/5d939e25a9787","extension":"jpg"},"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/18454/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/485","name":"Andy + Lanning","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9432","name":"Sean + Ryan","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11788","name":"Jennifer + Van Meter","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13138","name":"In-Hyuk + Lee","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12392","name":"David + Lopez","role":"penciller (cover)"}],"returned":5},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/18454/characters","items":[],"returned":0},"stories":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/18454/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110101","name":"cover + from 100th Anniversary Special (2014) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110102","name":"story + from 100th Anniversary Special (2014) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110103","name":"cover + from 100th Anniversary Special (2014) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110104","name":"story + from 100th Anniversary Special (2014) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110105","name":"cover + from 100th Anniversary Special (2014) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110106","name":"story + from 100th Anniversary Special (2014) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110107","name":"cover + from 100th Anniversary Special (2014) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110108","name":"story + from 100th Anniversary Special (2014) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110109","name":"cover + from 100th Anniversary Special (2014) #5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/110110","name":"story + from 100th Anniversary Special (2014) #5","type":"interiorStory"}],"returned":10},"comics":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/18454/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49008","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49010","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49009","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49011","name":"100th + Anniversary Special (2014) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/49007","name":"100th + Anniversary Special (2014) #1"}],"returned":5},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/18454/events","items":[],"returned":0},"next":null,"previous":null},{"id":13379,"title":"15 + Love (2011)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/13379","urls":[{"type":"detail","url":"http://marvel.com/comics/series/13379/15_love_2011?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2011,"endYear":2011,"rating":"","type":"","modified":"2015-09-22T17:11:46-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/00/51644d6b47668","extension":"jpg"},"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/13379/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/274","name":"Tommy + Ohtsuka","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/496","name":"Andi + Watson","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8822","name":"Jordan + D. White","role":"editor"}],"returned":3},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/13379/characters","items":[],"returned":0},"stories":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/series/13379/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82480","name":"Cover + #82480","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82481","name":"Interior + #82481","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82484","name":"Cover + #82484","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82485","name":"Interior + #82485","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82486","name":"15-Love + (2011) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82487","name":"Interior + #82487","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/106025","name":"cover + from 15-Love #1.5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/106026","name":"cover + from 15-Love #2.5","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/106027","name":"cover + from 15-Love #3.5","type":"cover"}],"returned":9},"comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/13379/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37254","name":"15 + Love (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37251","name":"15 + Love (2011) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37253","name":"15 + Love (2011) #3"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/13379/events","items":[],"returned":0},"next":null,"previous":null},{"id":13380,"title":"15-Love + GN-TPB (2013 - Present)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/13380","urls":[{"type":"detail","url":"http://marvel.com/comics/series/13380/15-love_gn-tpb_2013_-_present?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2013,"endYear":2099,"rating":"","type":"","modified":"2011-10-14T16:22:04-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/13380/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/13380/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/13380/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82482","name":"15-Love + GN-TPB (2013) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/82483","name":"Interior + #82483","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/13380/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37252","name":"15-Love + GN-TPB (Graphic Novel)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/13380/events","items":[],"returned":0},"next":null,"previous":null},{"id":489,"title":"1602 + (2003 - 2004)","description":"Award-winning writer Neil Gaiman teams with + artist Andy Kubert to re-imagine the Marvel Universe in the year 1602! It''s + Spider-Man, the X-Men, Nick Fury, Doctor Strange, Daredevil and more as you''d + never think to imagine them in an utterly unique and thrilling tale of high + adventure!","resourceURI":"http://gateway.marvel.com/v1/public/series/489","urls":[{"type":"detail","url":"http://marvel.com/comics/series/489/1602_2003_-_2004?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2003,"endYear":2004,"rating":"Marvel + Psr","type":"limited","modified":"2013-10-02T12:13:44-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/51926fde9c18a","extension":"jpg"},"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/567","name":"Neil + Gaiman","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/175","name":"Andy + Kubert","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/566","name":"Scott + McKowen","role":"penciller (cover)"}],"returned":3},"characters":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009463","name":"Matthew + Murdock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009547","name":"Natasha + Romanoff"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick + Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011054","name":"Spider-Man + (1602)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009661","name":"The + Watchers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010697","name":"Virginia + Dare"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":9},"stories":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1600","name":"Cover + #1600","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1601","name":"Interior + #1601","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1616","name":"Cover + #1616","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1617","name":"Interior + #1617","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1723","name":"Cover + #1723","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1724","name":"Interior + #1724","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1770","name":"Cover + #1770","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1771","name":"Interior + #1771","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2264","name":"Cover + #2264","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2265","name":"Interior + #2265","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2629","name":"1602 + #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2630","name":"1602 + #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44869","name":"Cover + #44869","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44870","name":"Interior + #44870","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113142","name":"Cover + from 1602 #2","type":"cover"}],"returned":15},"comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20630","name":"1602 + (2003) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50114","name":"1602 + (2003) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/377","name":"1602 + (2003) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/148","name":"1602 + (2003) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/147","name":"1602 + (2003) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/146","name":"1602 + (2003) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/145","name":"1602 + (2003) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/440","name":"1602 + (2003) #8"}],"returned":8},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/events","items":[],"returned":0},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/series/783","name":"Marvel + 1602: New World (2005)"},"previous":null},{"id":19244,"title":"1602 Witch + Hunter Angela (2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19244","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19244/1602_witch_hunter_angela_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2015,"rating":"Rated + T+","type":"limited","modified":"2017-10-26T14:30:43-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/6/60/553a60a66f2f6","extension":"jpg"},"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12441","name":"Marguerite + Bennett","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8901","name":"Kieron + Gillen","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10405","name":"John + Tyler Christopher","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13055","name":"Richard + Isanove","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12756","name":"Irene + Koh","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10785","name":"Stephanie + Hans","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1063","name":"Frazer + Irving","role":"artist"}],"returned":7},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017574","name":"Angela + (Aldrif Odinsdottir)"}],"returned":1},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113973","name":"cover + from 1602 Witch Hunter Angela (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113974","name":"story + from 1602 Witch Hunter Angela (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113975","name":"cover + from 1602 Witch Hunter Angela (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113976","name":"story + from 1602 Witch Hunter Angela (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113977","name":"cover + from 1602 Witch Hunter Angela (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113978","name":"story + from 1602 Witch Hunter Angela (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113979","name":"cover + from 1602 Witch Hunter Angela (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113980","name":"story + from 1602 Witch Hunter Angela (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120677","name":"cover + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/120678","name":"story + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121219","name":"cover + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST MISTRESS OF GWENG FU VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121220","name":"story + from 1602 Witch Hunter Angela (2015) #1 (TBD ARTIST MISTRESS OF GWENG FU VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121474","name":"cover + from 1602 Witch Hunter Angela (2015) #2 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121475","name":"story + from 1602 Witch Hunter Angela (2015) #2 (TBD ARTIST VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123459","name":"cover + from 1602 Witch Hunter Angela (2015) #3 (IRVING VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123460","name":"story + from 1602 Witch Hunter Angela (2015) #3 (IRVING VARIANT)","type":"interiorStory"}],"returned":16},"comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51198","name":"1602 + Witch Hunter Angela (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55028","name":"1602 + Witch Hunter Angela (2015) #1 (Christopher Gwengela Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/54728","name":"1602 + Witch Hunter Angela (2015) #1 (Isanove Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51199","name":"1602 + Witch Hunter Angela (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55191","name":"1602 + Witch Hunter Angela (2015) #2 (Koh Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51200","name":"1602 + Witch Hunter Angela (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56248","name":"1602 + Witch Hunter Angela (2015) #3 (Irving Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/51201","name":"1602 + Witch Hunter Angela (2015) #4"}],"returned":8},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19244/events","items":[],"returned":0},"next":null,"previous":null},{"id":20293,"title":"1602 + Witch Hunter Angela (2016)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/20293","urls":[{"type":"detail","url":"http://marvel.com/comics/series/20293/1602_witch_hunter_angela_2016?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2016,"endYear":2016,"rating":"","type":"collection","modified":"2016-02-05T13:09:46-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20293/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20293/characters","items":[],"returned":0},"stories":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20293/stories","items":[],"returned":0},"comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20293/comics","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/20293/events","items":[],"returned":0},"next":null,"previous":null},{"id":19501,"title":"1872 + (2015)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/19501","urls":[{"type":"detail","url":"http://marvel.com/comics/series/19501/1872_2015?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2015,"endYear":2015,"rating":"Rated + T+","type":"limited","modified":"2017-10-26T14:31:35-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/40/553a60e7ab48d","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/19501/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11482","name":"Jesus + Aburtov","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11680","name":"Gerry + Duggan","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11886","name":"Francesco + Francavilla","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/25","name":"Alex + Maleev","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7190","name":"Skottie + Young","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/820","name":"Leonard + Kirk","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/593","name":"Lee + Loughridge","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12708","name":"Evan + Doc Shaner","role":"artist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11921","name":"Jacob + Thomas","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12483","name":"Nik + Virella","role":"penciller"}],"returned":11},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19501/characters","items":[],"returned":0},"stories":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/series/19501/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115721","name":"cover + from Marvel 1862 (2015) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115722","name":"story + from Marvel 1862 (2015) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115723","name":"cover + from Marvel 1862 (2015) #1 (YOUNG VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115724","name":"story + from Marvel 1862 (2015) #1 (YOUNG VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115725","name":"cover + from Marvel 1862 (2015) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115726","name":"story + from Marvel 1862 (2015) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115727","name":"cover + from Marvel 1862 (2015) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115728","name":"story + from Marvel 1862 (2015) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115729","name":"cover + from Marvel 1862 (2015) #4","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/115730","name":"story + from Marvel 1862 (2015) #4","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121278","name":"cover + from Marvel 1862 (2015) #1 (SHANER VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/121279","name":"story + from Marvel 1862 (2015) #1 (SHANER VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123461","name":"cover + from 1872 (2015) #3 (TBD ARTIST VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/123462","name":"story + from 1872 (2015) #3 (TBD ARTIST VARIANT)","type":"interiorStory"}],"returned":14},"comics":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/19501/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52072","name":"1872 + (2015) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52073","name":"1872 + (2015) #1 (Young Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/55058","name":"1872 + (2015) #1 (Shaner Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52074","name":"1872 + (2015) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52075","name":"1872 + (2015) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/56249","name":"1872 + (2015) #3 (Francavilla Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/52076","name":"1872 + (2015) #4"}],"returned":7},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/19501/events","items":[],"returned":0},"next":null,"previous":null},{"id":7520,"title":"1939 + Daily Bugle (2009 - Present)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/7520","urls":[{"type":"detail","url":"http://marvel.com/comics/series/7520/1939_daily_bugle_2009_-_present?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2009,"endYear":2099,"rating":"","type":"","modified":"2011-04-29T14:04:00-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/d0/4bb4eafadecaf","extension":"jpg"},"creators":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/series/7520/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10024","name":"Chance + Fiveash","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8123","name":"Bob + Greenberger","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9718","name":"Jess + Harold","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7935","name":"Sheila + Johnson","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8155","name":"Brian + O''Dell","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10363","name":"John + Rhett Thomas","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8402","name":"Dugan + Trodglen","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7553","name":"JEPH + YORK","role":"other"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/243","name":"Mike + Mayhew","role":"colorist"}],"returned":9},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/7520/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/7520/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54073","name":"Cover + #54073","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54074","name":"Interior + #54074","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/7520/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24321","name":"1939 + Daily Bugle (2009) #6"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/7520/events","items":[],"returned":0},"next":null,"previous":null},{"id":7521,"title":"2009 + Mini-Poster 6 (2009 - Present)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/7521","urls":[{"type":"detail","url":"http://marvel.com/comics/series/7521/2009_mini-poster_6_2009_-_present?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2009,"endYear":2099,"rating":"","type":"","modified":"2011-04-29T14:04:00-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/7521/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/7521/characters","items":[],"returned":0},"stories":{"available":42,"collectionURI":"http://gateway.marvel.com/v1/public/series/7521/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53882","name":"Cover + #53882","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53883","name":"Interior + #53883","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53981","name":"Cover + #53981","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/53982","name":"Interior + #53982","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54075","name":"Cover + #54075","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54076","name":"Interior + #54076","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54077","name":"Cover + #54077","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54078","name":"Interior + #54078","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54079","name":"Cover + #54079","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54080","name":"Interior + #54080","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54081","name":"Cover + #54081","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54082","name":"Interior + #54082","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54083","name":"Cover + #54083","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54084","name":"Interior + #54084","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54085","name":"Cover + #54085","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54086","name":"Interior + #54086","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54087","name":"Cover + #54087","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54088","name":"Interior + #54088","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54089","name":"Cover + #54089","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/54090","name":"Interior + #54090","type":"interiorStory"}],"returned":20},"comics":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/7521/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24328","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24329","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24336","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24338","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24339","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24340","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24323","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24341","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24324","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24342","name":"2009 + Mini-Poster 6 (2009) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24325","name":"2009 + Mini-Poster 6 (2009) #1"}],"returned":11},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/7521/events","items":[],"returned":0},"next":null,"previous":null},{"id":29693,"title":"2020 + Force Works (2020)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/29693","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29693/2020_force_works_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"limited","modified":"2020-09-14T15:42:48-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/a/90/5f5fc799434fe","extension":"jpg"},"creators":{"available":21,"collectionURI":"http://gateway.marvel.com/v1/public/series/29693/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13647","name":"Lauren + Amaro","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13127","name":"Emily + Newcomen","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13027","name":"Darren + Shan","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13180","name":"Federico + Blee","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12239","name":"Guru + Efx","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13632","name":"Ryan + Brown","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10355","name":"Carlos + Gomez","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13042","name":"Mike + Mckone","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/554","name":"Ben + Oliver","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10172","name":"Vc + Clayton Cowles","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12993","name":"Vc + Travis Lanham","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13021","name":"David + Curiel","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1405","name":"Matt + Milla","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8706","name":"Jay + David Ramos","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12991","name":"Rachelle + Rosenberg","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12856","name":"Juanan + Ramirez","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10120","name":"Roberto + DI Salvo","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12771","name":"Matthew + Rosenberg","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/489","name":"Philip + Tan","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13793","name":"Thomas + Tenney","role":"inker (cover)"}],"returned":20},"characters":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/29693/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011220","name":"Mockingbird"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1014528","name":"Quake + (Daisy Johnson)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009682","name":"U.S. + Agent"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017834","name":"War + Machine (James Rhodes)"}],"returned":4},"stories":{"available":14,"collectionURI":"http://gateway.marvel.com/v1/public/series/29693/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186483","name":"cover + from 2020 Force Works (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186484","name":"story + from 2020 Force Works (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186485","name":"cover + from 2020 Force Works (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186486","name":"story + from 2020 Force Works (2020) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186487","name":"cover + from 2020 Force Works (2020) #3","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186488","name":"story + from 2020 Force Works (2020) #3","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187973","name":"cover + from 2020 Force Works (2020) #1 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187974","name":"story + from 2020 Force Works (2020) #1 (VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187975","name":"cover + from 2020 Force Works (2020) #1 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187976","name":"story + from 2020 Force Works (2020) #1 (VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188579","name":"cover + from 2020 Force Works (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188580","name":"story + from 2020 Force Works (2020) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/196813","name":"cover + from 2020 Force Works (2020) #3 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/196814","name":"story + from 2020 Force Works (2020) #3 (VARIANT)","type":"interiorStory"}],"returned":14},"comics":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/29693/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84343","name":"2020 + Force Works (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84669","name":"2020 + Force Works (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84670","name":"2020 + Force Works (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84344","name":"2020 + Force Works (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84972","name":"2020 + Force Works (2020) #2 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84345","name":"2020 + Force Works (2020) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/88409","name":"2020 + Force Works (2020) #3 (Variant)"}],"returned":7},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29693/events","items":[],"returned":0},"next":null,"previous":null},{"id":29692,"title":"2020 + Iron Age (2020)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/29692","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29692/2020_iron_age_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"one + shot","modified":"2020-03-10T17:01:59-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":13,"collectionURI":"http://gateway.marvel.com/v1/public/series/29692/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13861","name":"Christopher + Cantwell","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13919","name":"Fonda + Lee","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13280","name":"Damian + Couceiro","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12966","name":"Matt + Horak","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13021","name":"David + Curiel","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13518","name":"Triona + Farrell","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8706","name":"Jay + David Ramos","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13103","name":"Felipe + Sobreiro","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12993","name":"Vc + Travis Lanham","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13128","name":"Nick + Roche","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13027","name":"Darren + Shan","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13061","name":"Cory + Smith","role":"penciler (cover)"}],"returned":13},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29692/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010805","name":"Machine + Man"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/29692/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186479","name":"cover + from new series (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186480","name":"story + from new series (2020) #1","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29692/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84341","name":"2020 + Iron Age (2020) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29692/events","items":[],"returned":0},"next":null,"previous":null},{"id":29812,"title":"2020 + IRON MANUAL [BUNDLES OF 25] (2020 - Present)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/29812","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29812/2020_iron_manual_bundles_of_25_2020_-_present?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2099,"rating":"","type":"ongoing","modified":"2019-11-08T09:02:44-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29812/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11896","name":"Peter + Charpentier","role":"editor"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29812/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/29812/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187775","name":"cover + from Iron Man 2020 Marketing Mini-Comic (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187776","name":"story + from Iron Man 2020 Marketing Mini-Comic (2020) #1","type":"interiorStory"}],"returned":2},"comics":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29812/comics","items":[],"returned":0},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29812/events","items":[],"returned":0},"next":null,"previous":null},{"id":29694,"title":"2020 + Ironheart (2020)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/29694","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29694/2020_ironheart_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"limited","modified":"2020-09-14T15:39:58-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/d/30/5f5fc6f0df496","extension":"jpg"},"creators":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/29694/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13590","name":"Vita + Ayala","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/14045","name":"Danny + Lore","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13676","name":"Mattia + Iacono","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13080","name":"S + SKAN","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13630","name":"Woo + Chul Lee","role":"painter (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12120","name":"David + Messina","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13046","name":"Alanna + Smith","role":"editor"}],"returned":8},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29694/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1017831","name":"Ironheart + (Riri Williams)"}],"returned":1},"stories":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/29694/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186489","name":"cover + from 2020 Ironheart (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186490","name":"story + from 2020 Ironheart (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186491","name":"cover + from 2020 Ironheart (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186492","name":"story + from 2020 Ironheart (2020) #2","type":"interiorStory"}],"returned":4},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/29694/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84346","name":"2020 + Ironheart (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84347","name":"2020 + Ironheart (2020) #2"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29694/events","items":[],"returned":0},"next":null,"previous":null},{"id":29697,"title":"2020 + iWolverine (2020)","description":"In the wake of Arno Stark’s crusade against + A.I.s, no robot is safe. Fearing of Elsie Dee’s safety in these tumultuous + times, Albert, the robot Wolverine, goes to Madripoor to find her…but what + he finds is a fight against Madripoor’s criminal underbelly instead! ","resourceURI":"http://gateway.marvel.com/v1/public/series/29697","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29697/2020_iwolverine_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"","modified":"2021-05-03T09:32:51-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/20/5f4037d30efa5","extension":"jpg"},"creators":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/29697/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11482","name":"Jesus + Aburtov","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13224","name":"Michael + Spicer","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13647","name":"Lauren + Amaro","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13027","name":"Darren + Shan","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9371","name":"Roland + Boschi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/42","name":"Larry + Hama","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13056","name":"Daniel + Warren Johnson","role":"inker (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8027","name":"Andres + Mossa","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10344","name":"Juan + Jose Ryp","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12974","name":"Vc + Joe Sabino","role":"letterer"}],"returned":10},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29697/characters","items":[],"returned":0},"stories":{"available":6,"collectionURI":"http://gateway.marvel.com/v1/public/series/29697/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186501","name":"cover + from 2020 Weapon.Exe (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186502","name":"story + from 2020 Weapon.Exe (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186503","name":"cover + from 2020 Weapon.Exe (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186504","name":"story + from 2020 Weapon.Exe (2020) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/201404","name":"cover + from 2020 Iwolverine (2020) #2 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/201405","name":"story + from 2020 Iwolverine (2020) #2 (VARIANT)","type":"interiorStory"}],"returned":6},"comics":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/29697/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84352","name":"2020 + iWolverine (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84353","name":"2020 + iWolverine (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/90178","name":"2020 + iWolverine (2020) #2 (Variant)"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29697/events","items":[],"returned":0},"next":null,"previous":null},{"id":29695,"title":"2020 + Machine Man (2020)","description":"The A.I. uprising has begun, and Machine + Man finds himself torn about his place in the revolution! As the battle rages + around him, will Machine Man aid mankind’s fight for survival or join his + robot brethren in ushering a new age? Plus, when faced with a figure from + his past, Machine Man must decide—is it time to follow his programming or + his heart? Don’t miss out on this epic adventure from Christos Gage and Andy + MacDonald! Plus, revisit Machine Man in 2020 with legendary creator, Tom DeFalco! + ","resourceURI":"http://gateway.marvel.com/v1/public/series/29695","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29695/2020_machine_man_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"","modified":"2020-09-11T17:42:42-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/5/70/5f5bef0fafd3e","extension":"jpg"},"creators":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/series/29695/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11482","name":"Jesus + Aburtov","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13224","name":"Michael + Spicer","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13162","name":"Erick + Arciniega","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13005","name":"Dono + Sanchez-Almara","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13074","name":"Adriano + DI Benedetto","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/7964","name":"Andy + Macdonald","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13632","name":"Ryan + Brown","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13128","name":"Nick + Roche","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/10344","name":"Juan + Jose Ryp","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9565","name":"Tom + Defalco","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11765","name":"Christos + Gage","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/942","name":"Mike + Hawthorne","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12993","name":"Vc + Travis Lanham","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13127","name":"Emily + Newcomen","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13027","name":"Darren + Shan","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12703","name":"Dave + Rapoza","role":"painter (cover)"}],"returned":16},"characters":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/29695/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009376","name":"Jocasta"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010805","name":"Machine + Man"}],"returned":2},"stories":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/series/29695/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186493","name":"cover + from 2020 Machine Man (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186494","name":"story + from 2020 Machine Man (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186495","name":"cover + from 2020 Machine Man (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186496","name":"story + from 2020 Machine Man (2020) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187977","name":"cover + from 2020 Machine Man (2020) #1 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187978","name":"story + from 2020 Machine Man (2020) #1 (VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187979","name":"cover + from 2020 Machine Man (2020) #1 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/187980","name":"story + from 2020 Machine Man (2020) #1 (VARIANT)","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188583","name":"cover + from 2020 Machine Man (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188584","name":"story + from 2020 Machine Man (2020) #2","type":"interiorStory"}],"returned":10},"comics":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/29695/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84348","name":"2020 + Machine Man (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84672","name":"2020 + Machine Man (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84671","name":"2020 + Machine Man (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84349","name":"2020 + Machine Man (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84974","name":"2020 + Machine Man (2020) #2 (Variant)"}],"returned":5},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29695/events","items":[],"returned":0},"next":null,"previous":null},{"id":29696,"title":"2020 + Rescue (2020)","description":"Pepper Potts moved on from Tony Stark. She’s + getting her life together, finding her place in the world. Unfortunately, + that’s exactly when Tony Stark decides it’s time for a full-tilt, full-blown + meltdown. And if Pepper can’t suit up and save the day, Tony is toast. ","resourceURI":"http://gateway.marvel.com/v1/public/series/29696","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29696/2020_rescue_2020?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2020,"endYear":2020,"rating":"","type":"","modified":"2020-04-03T17:08:11-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/1/40/5e558a8495066","extension":"jpg"},"creators":{"available":11,"collectionURI":"http://gateway.marvel.com/v1/public/series/29696/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11482","name":"Jesus + Aburtov","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11487","name":"Arif + Prianto","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13591","name":"Mirka + Andolfo","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13069","name":"Jen + Bartel","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/208","name":"Paco + Medina","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/8648","name":"Jacen + Burrows","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/362","name":"Scott + Hanna","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13339","name":"Pete + Pantazis","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13707","name":"Dana + Schwartz","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13046","name":"Alanna + Smith","role":"editor"}],"returned":11},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29696/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009494","name":"Pepper + Potts"}],"returned":1},"stories":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/29696/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186497","name":"cover + from 2020 Rescue (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186498","name":"story + from 2020 Rescue (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186499","name":"cover + from 2020 Rescue (2020) #2","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/186500","name":"story + from 2020 Rescue (2020) #2","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188585","name":"cover + from 2020 Rescue (2020) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/188586","name":"story + from 2020 Rescue (2020) #1","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/196817","name":"cover + from 2020 Rescue (2020) #2 (VARIANT)","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/196818","name":"story + from 2020 Rescue (2020) #2 (VARIANT)","type":"interiorStory"}],"returned":8},"comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/series/29696/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84350","name":"2020 + Rescue (2020) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84975","name":"2020 + Rescue (2020) #1 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/84351","name":"2020 + Rescue (2020) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/88411","name":"2020 + Rescue (2020) #2 (Variant)"}],"returned":4},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29696/events","items":[],"returned":0},"next":null,"previous":null},{"id":27980,"title":"2099 + Alpha (2019)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/27980","urls":[{"type":"detail","url":"http://marvel.com/comics/series/27980/2099_alpha_2019?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2019,"endYear":2019,"rating":"","type":"one + shot","modified":"2019-11-18T10:54:08-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/series/27980/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13914","name":"Viktor + Bogdanovic","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5251","name":"Vc + Joe Caramagna","role":"letterer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12239","name":"Guru + Efx","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5933","name":"Patrick + Gleason","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/872","name":"Marte + Gracia","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11434","name":"Nick + Spencer","role":"writer"}],"returned":7},"characters":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/27980/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009610","name":"Spider-Man + (Peter Parker)"}],"returned":1},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/27980/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/174026","name":"cover + from Amazing Spider-Man 2099 Alpha (2019) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/174027","name":"story + from Amazing Spider-Man 2099 Alpha (2019) #1","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/27980/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78503","name":"2099 + Alpha (2019) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/27980/events","items":[],"returned":0},"next":null,"previous":null},{"id":27981,"title":"2099 + Omega (2019)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/27981","urls":[{"type":"detail","url":"http://marvel.com/comics/series/27981/2099_omega_2019?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2019,"endYear":2019,"rating":"","type":"one + shot","modified":"2019-12-12T10:49:53-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available","extension":"jpg"},"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/series/27981/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/5933","name":"Patrick + Gleason","role":"penciler (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/4300","name":"Nick + Lowe","role":"editor"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12991","name":"Rachelle + Rosenberg","role":"colorist (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/12369","name":"Gerardo + Sandoval","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11434","name":"Nick + Spencer","role":"writer"}],"returned":5},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/27981/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/27981/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/174028","name":"cover + from Amazing Spider-Man 2099 Omega (2019) #1","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/174029","name":"story + from Amazing Spider-Man 2099 Omega (2019) #1","type":"interiorStory"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/27981/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/78504","name":"2099 + Omega (2019) #1"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/27981/events","items":[],"returned":0},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_SeriesResource/gets_series_with_params.yml b/spec/vcr/Harkness_SeriesResource/gets_series_with_params.yml new file mode 100644 index 0000000..21b932a --- /dev/null +++ b/spec/vcr/Harkness_SeriesResource/gets_series_with_params.yml @@ -0,0 +1,78 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&titleStartsWith=160&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - d770abb80ffaae45bd4cd6126ee2ac521b3e340a + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:07:42 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"d770abb80ffaae45bd4cd6126ee2ac521b3e340a","data":{"offset":0,"limit":1,"total":3,"count":1,"results":[{"id":489,"title":"1602 + (2003 - 2004)","description":"Award-winning writer Neil Gaiman teams with + artist Andy Kubert to re-imagine the Marvel Universe in the year 1602! It''s + Spider-Man, the X-Men, Nick Fury, Doctor Strange, Daredevil and more as you''d + never think to imagine them in an utterly unique and thrilling tale of high + adventure!","resourceURI":"http://gateway.marvel.com/v1/public/series/489","urls":[{"type":"detail","url":"http://marvel.com/comics/series/489/1602_2003_-_2004?utm_campaign=apiRef&utm_source=abcd"}],"startYear":2003,"endYear":2004,"rating":"Marvel + Psr","type":"limited","modified":"2013-10-02T12:13:44-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/d0/51926fde9c18a","extension":"jpg"},"creators":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/567","name":"Neil + Gaiman","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/175","name":"Andy + Kubert","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/566","name":"Scott + McKowen","role":"penciller (cover)"}],"returned":3},"characters":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009281","name":"Doctor + Doom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009417","name":"Magneto"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009463","name":"Matthew + Murdock"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009547","name":"Natasha + Romanoff"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009471","name":"Nick + Fury"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011054","name":"Spider-Man + (1602)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009661","name":"The + Watchers"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010697","name":"Virginia + Dare"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":9},"stories":{"available":15,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1600","name":"Cover + #1600","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1601","name":"Interior + #1601","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1616","name":"Cover + #1616","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1617","name":"Interior + #1617","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1723","name":"Cover + #1723","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1724","name":"Interior + #1724","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1770","name":"Cover + #1770","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1771","name":"Interior + #1771","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2264","name":"Cover + #2264","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2265","name":"Interior + #2265","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2629","name":"1602 + #7","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/2630","name":"1602 + #7","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44869","name":"Cover + #44869","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/44870","name":"Interior + #44870","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/113142","name":"Cover + from 1602 #2","type":"cover"}],"returned":15},"comics":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20630","name":"1602 + (2003) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/50114","name":"1602 + (2003) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/377","name":"1602 + (2003) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/148","name":"1602 + (2003) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/147","name":"1602 + (2003) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/146","name":"1602 + (2003) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/145","name":"1602 + (2003) #7"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/440","name":"1602 + (2003) #8"}],"returned":8},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/489/events","items":[],"returned":0},"next":{"resourceURI":"http://gateway.marvel.com/v1/public/series/783","name":"Marvel + 1602: New World (2005)"},"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_by_ID.yml new file mode 100644 index 0000000..99b6661 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_by_ID.yml @@ -0,0 +1,42 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/11?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - e9afd2f48c26b4a87f7b388df207ffe80387e606 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:34:42 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"e9afd2f48c26b4a87f7b388df207ffe80387e606","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":11,"title":"Interior + #11","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/11","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/10","name":"Captain + Britain Vol. I (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/945","name":"Captain + Britain Vol. I (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/945","name":"Captain + Britain Vol. I (Trade Paperback)"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_s_characters_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_s_characters_by_ID.yml new file mode 100644 index 0000000..02ea656 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_s_characters_by_ID.yml @@ -0,0 +1,287 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/1315/characters?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - "08d0bd4357f7f59313b372124d478738716d5ec7" + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:22:11 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"08d0bd4357f7f59313b372124d478738716d5ec7","data":{"offset":0,"limit":20,"total":5,"count":5,"results":[{"id":1010916,"name":"Carnage + (Ultimate)","description":"","modified":"1969-12-31T19:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/00/4c003571c756c","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010916","comics":{"available":7,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010916/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/600","name":"Ultimate + Spider-Man (2000) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/538","name":"Ultimate + Spider-Man (2000) #63"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/759","name":"Ultimate + Spider-Man (2000) #64"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5218","name":"Ultimate + Spider-Man (2000) #101"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/5374","name":"Ultimate + Spider-Man (2000) #102"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22","name":"Ultimate + Spider-Man Vol. 11: Carnage (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/16199","name":"Ultimate + Spider-Man Vol. 17: Clone Saga (Trade Paperback)"}],"returned":7},"series":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010916/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/466","name":"Ultimate + Spider-Man (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1221","name":"Ultimate + Spider-Man Vol. 11: Carnage (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2692","name":"Ultimate + Spider-Man Vol. 17: Clone Saga (2007)"}],"returned":3},"stories":{"available":9,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010916/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1314","name":"Ultimate + Spider-Man (2000) #63","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1316","name":"Ultimate + Spider-Man (2000) #62","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1326","name":"Ultimate + Spider-Man (2000) #64","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1327","name":"Interior + #1327","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1398","name":"Ultimate + Spider-Man (2000) #101","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1399","name":"5 + of ? - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1401","name":"6 + of ? - The Clone Saga","type":"interiorStory"}],"returned":9},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1010916/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/397/carnage?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Carnage_%28Ultimate%29?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1010916/carnage_ultimate?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009244,"name":"Curt + Conners","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/1009244","comics":{"available":18,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009244/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40138","name":"Amazing + Spider-Man (1999) #688"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40112","name":"Amazing + Spider-Man (1999) #689"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40121","name":"Amazing + Spider-Man (1999) #690"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6295","name":"Sensational + Spider-Man (2006) #37"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1133","name":"SPIDER-MAN + LEGENDS VOL. 2: TODD MCFARLANE BOOK 2 TPB (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17331","name":"Spider-Man, + Peter Parker: Back in Black (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6146","name":"Spider-Man: + Birth of Venom (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6642","name":"The + Amazing Spider-Man (1963) #243"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6652","name":"The + Amazing Spider-Man (1963) #252"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6718","name":"The + Amazing Spider-Man (1963) #311"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6719","name":"The + Amazing Spider-Man (1963) #312"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6720","name":"The + Amazing Spider-Man (1963) #313"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6832","name":"The + Amazing Spider-Man (1963) #414"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/717","name":"Ultimate + Spider-Man (2000) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/600","name":"Ultimate + Spider-Man (2000) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/538","name":"Ultimate + Spider-Man (2000) #63"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/759","name":"Ultimate + Spider-Man (2000) #64"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/22","name":"Ultimate + Spider-Man Vol. 11: Carnage (Trade Paperback)"}],"returned":18},"series":{"available":8,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009244/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/722","name":"Sensational + Spider-Man (2006 - 2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/192","name":"SPIDER-MAN + LEGENDS VOL. 2: TODD MCFARLANE BOOK 2 TPB (2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3133","name":"Spider-Man, + Peter Parker: Back in Black (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1921","name":"Spider-Man: + Birth of Venom (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1987","name":"The + Amazing Spider-Man (1963 - 1998)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/466","name":"Ultimate + Spider-Man (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1221","name":"Ultimate + Spider-Man Vol. 11: Carnage (2004)"}],"returned":8},"stories":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009244/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1327","name":"Interior + #1327","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/8135","name":"SENSATIONAL + SPIDER-MAN (2006) #37","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13868","name":"Amazing + Spider-Man (1963) #243","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13888","name":"Amazing + Spider-Man (1963) #252","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/13889","name":"Homecoming","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14024","name":"Amazing + Spider-Man (1963) #311","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14026","name":"Amazing + Spider-Man (1963) #312","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14028","name":"Amazing + Spider-Man (1963) #313","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66195","name":"Amazing + Spider-Man (1963) #243","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/66277","name":"Amazing + Spider-Man (1963) #414","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91021","name":"Amazing + Spider-Man (1999) #689","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91039","name":"Amazing + Spider-Man (1999) #690","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/91073","name":"Amazing + Spider-Man (1999) #688","type":"cover"}],"returned":16},"events":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009244/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":2},"urls":[{"type":"detail","url":"http://marvel.com/characters/2694/curt_conners?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009244/curt_conners?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1011203,"name":"Mary + Jane Watson (Ultimate)","description":"","modified":"2011-05-03T13:02:57-0400","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/e/f0/4ce5a53fae2a5","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011203","comics":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011203/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38400","name":"Ultimate + Comics Spider-Man (2011) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37461","name":"Ultimate + Comics Spider-Man (2009) #150"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37465","name":"Ultimate + Comics Spider-Man (2009) #156"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/37458","name":"Ultimate + Comics Spider-Man (2009) #158"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40363","name":"Ultimate + Comics Spider-Man (2009) #160"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39967","name":"Ultimate + Fallout (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40098","name":"Ultimate + Fallout (2011) #1 (Diamond Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40031","name":"Ultimate + Fallout (2011) #1 (Djurdjevic Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14846","name":"Ultimate + Spider-Man (2000) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14839","name":"Ultimate + Spider-Man (2000) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14851","name":"Ultimate + Spider-Man (2000) #24"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/14858","name":"Ultimate + Spider-Man (2000) #30"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/717","name":"Ultimate + Spider-Man (2000) #61"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/600","name":"Ultimate + Spider-Man (2000) #62"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/538","name":"Ultimate + Spider-Man (2000) #63"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/787","name":"Ultimate + Spider-Man (2000) #65"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/876","name":"Ultimate + Spider-Man (2000) #66"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12","name":"Ultimate + Spider-Man (2000) #68"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13","name":"Ultimate + Spider-Man (2000) #69"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1416","name":"Ultimate + Spider-Man (2000) #70"}],"returned":20},"series":{"available":16,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011203/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/8509","name":"Ultimate + Comics Spider-Man (2009 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13831","name":"Ultimate + Comics Spider-Man (2011 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14807","name":"Ultimate + Fallout (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/466","name":"Ultimate + Spider-Man (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1919","name":"Ultimate + Spider-Man Ultimate Collection Book 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1221","name":"Ultimate + Spider-Man Vol. 11: Carnage (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1383","name":"Ultimate + Spider-Man Vol. 12: Superstars (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1426","name":"Ultimate + Spider-Man Vol. 15: Silver Sable (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1618","name":"Ultimate + Spider-Man Vol. 16: Deadpool (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2692","name":"Ultimate + Spider-Man Vol. 17: Clone Saga (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2922","name":"ULTIMATE + SPIDER-MAN VOL. 18: ULTIMATE KNIGHTS TPB (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/74","name":"Ultimate + Spider-Man Vol. 1: Power & Responsibility (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/78","name":"ULTIMATE + SPIDER-MAN VOL. 4: LEGACY TPB (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3887","name":"Ultimate + Spider-Man Vol. 9 (2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2280","name":"Ultimate + Spider-Man: Free Comic Book Day Edition (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/474","name":"Ultimate + X-Men (2001 - 2009)"}],"returned":16},"stories":{"available":36,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011203/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1291","name":"1 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1293","name":"2 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1314","name":"Ultimate + Spider-Man (2000) #63","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1329","name":"SELF-CONTAINED + STORY! It’s the Breakfast Club redux as Peter, Mary Jane, Liz, Flash and + Kong are busted and given detention. No","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1330","name":"Ultimate + Spider-Man (2000) #66","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1335","name":"1 + of 2 - Sorceror Supreme","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1350","name":"1 + of 1 - Dumped","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1364","name":"ULTIMATE + SPIDER-MAN (2000) #86","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1386","name":"ULTIMATE + SPIDER-MAN (2000) #96","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1388","name":"ULTIMATE + SPIDER-MAN (2000) #97","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1390","name":"ULTIMATE + SPIDER-MAN (2000) #98","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1392","name":"ULTIMATE + SPIDER-MAN (2000) #99","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1394","name":"ULTIMATE + SPIDER-MAN (2000) #100","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1399","name":"5 + of ? - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1403","name":"7 + of 8 - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1405","name":"8 + of 8 - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/7630","name":"1 + of 5 - Ultimate Knights","type":"interiorStory"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011203/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/2727/mary_jane_watson?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011203/mary_jane_watson_ultimate?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1009491,"name":"Peter + Parker","description":"","modified":"2021-07-01T15:07:31-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/1009491","comics":{"available":195,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009491/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6809","name":"The + Amazing Spider-Man (1963) #394"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6810","name":"The + Amazing Spider-Man (1963) #395"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6811","name":"The + Amazing Spider-Man (1963) #396"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6812","name":"The + Amazing Spider-Man (1963) #397"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6813","name":"The + Amazing Spider-Man (1963) #398"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/6814","name":"The + Amazing Spider-Man (1963) #399"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/392","name":"Amazing + Spider-Man (1999) #502"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/290","name":"Amazing + Spider-Man (1999) #503"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/413","name":"Amazing + Spider-Man (1999) #505"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/441","name":"Amazing + Spider-Man (1999) #506"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/491","name":"Amazing + Spider-Man (1999) #507"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/721","name":"Amazing + Spider-Man (1999) #509"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/530","name":"Amazing + Spider-Man (1999) #510"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24408","name":"Amazing + Spider-Man (1999) #601"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24409","name":"Amazing + Spider-Man (1999) #602"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24410","name":"Amazing + Spider-Man (1999) #603"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24411","name":"Amazing + Spider-Man (1999) #604"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24412","name":"Amazing + Spider-Man (1999) #605"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24415","name":"Amazing + Spider-Man (1999) #608"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/24416","name":"Amazing + Spider-Man (1999) #609"}],"returned":20},"series":{"available":35,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009491/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/318","name":"Amazing + Spider-Man Vol. 6 (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1292","name":"AMAZING + SPIDER-MAN VOL. 7: BOOK OF EZEKIEL TPB (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1291","name":"Amazing + Spider-Man Vol. 7: The Book of Ezekiel (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1283","name":"Amazing + Spider-Man Vol. 8: Sins Past (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1991","name":"Avengers + (1963 - 1996)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/485","name":"Captain + America (2002 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/23704","name":"Daily + Bugle (1996 - 1997)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/449","name":"Daredevil + (1998 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/20","name":"Daredevil + Vol. III: Wake Up (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1922","name":"Essential + Ms. Marvel Vol. 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/31990","name":"Heroes + Reborn: Peter Parker, The Amazing Shutterbug (2021)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2021","name":"Incredible + Hulk (1962 - 1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1501","name":"MARY + JANE VOL. 2: HOMECOMING DIGEST (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/882","name":"Mary + Jane: Homecoming (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2050","name":"Ms. + Marvel (1977 - 1979)"},{"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/2060","name":"Peter + Parker: Spider-Man (1999 - 2003)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/556","name":"Spectacular + Spider-Man (2003 - 2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/66","name":"SPIDER-MAN + LEGENDS VOL. 1: TODD MCFARLANE BOOK 1 TPB (1999)"}],"returned":20},"stories":{"available":204,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009491/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1022","name":"Amazing + Spider-Man (1999) #502","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1137","name":"Amazing + Spider-Man (1999) #505","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1139","name":"Amazing + Spider-Man (1999) #506","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1141","name":"Amazing + Spider-Man (1999) #507","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1143","name":"Amazing + Spider-Man (1999) #510","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1147","name":"Amazing + Spider-Man (1999) #509","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1291","name":"1 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1293","name":"2 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1314","name":"Ultimate + Spider-Man (2000) #63","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1327","name":"Interior + #1327","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1329","name":"SELF-CONTAINED + STORY! It’s the Breakfast Club redux as Peter, Mary Jane, Liz, Flash and + Kong are busted and given detention. No","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1330","name":"Ultimate + Spider-Man (2000) #66","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1335","name":"1 + of 2 - Sorceror Supreme","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1399","name":"5 + of ? - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1401","name":"6 + of ? - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1403","name":"7 + of 8 - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1405","name":"8 + of 8 - The Clone Saga","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1663","name":"Amazing + Spider-Man (1999) #503","type":"cover"}],"returned":20},"events":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1009491/events","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/events/116","name":"Acts + of Vengeance!"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/252","name":"Inferno"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/154","name":"Onslaught"},{"resourceURI":"http://gateway.marvel.com/v1/public/events/270","name":"Secret + Wars"}],"returned":4},"urls":[{"type":"detail","url":"http://marvel.com/characters/2748/molly_von_richtofen?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1009491/peter_parker?utm_campaign=apiRef&utm_source=abcd"}]},{"id":1011010,"name":"Spider-Man + (Ultimate)","description":"Peter’s relatively normal life changed abruptly + during a school trip to Osborn Industries, Inc, where the company had been + working on a super soldier serum, the Oz Compound; a spider exposed to it + escaped and bit Peter before it was destroyed.","modified":"2014-03-05T13:50:46-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/3/50/531771b4e8c60","extension":"jpg"},"resourceURI":"http://gateway.marvel.com/v1/public/characters/1011010","comics":{"available":260,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011010/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/35582","name":"Ultimate + Avengers Vs. New Ultimates (2011) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39343","name":"Ultimate + Avengers Vs. New Ultimates (2011) #1 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38503","name":"Ultimate + Avengers Vs. New Ultimates (2011) #2 (HITCH VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40246","name":"Ultimate + Avengers Vs. New Ultimates (2011) #2 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38500","name":"Ultimate + Avengers Vs. New Ultimates (2011) #3 (CHO VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/40245","name":"Ultimate + Avengers Vs. New Ultimates (2011) #3 (2nd Printing Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36127","name":"Ultimate + Avengers Vs. New Ultimates (2011) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38502","name":"Ultimate + Avengers Vs. New Ultimates (2011) #4 (HITCH VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36350","name":"Ultimate + Avengers Vs. New Ultimates (2011) #5"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/36125","name":"Ultimate + Avengers Vs. New Ultimates (2011) #6"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/38501","name":"Ultimate + Avengers Vs. New Ultimates (2011) #6 (Hitch Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/39468","name":"Ultimate + Comics Avengers Vs. New Ultimates: Death of Spider-Man (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30215","name":"Ultimate + Comics Doom (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30206","name":"Ultimate + Comics Enemy (2010) #1"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/32674","name":"Ultimate + Comics Enemy (2010) #1 (VILLAIN VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/32676","name":"Ultimate + Comics Enemy (2010) #1 (FOILOGRAM VARIANT)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30207","name":"Ultimate + Comics Enemy (2010) #2"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30208","name":"Ultimate + Comics Enemy (2010) #3"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30209","name":"Ultimate + Comics Enemy (2010) #4"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/30210","name":"Ultimate + Comics Mystery (2010) #1"}],"returned":20},"series":{"available":45,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011010/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/12615","name":"Ultimate + Avengers Vs. New Ultimates (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14423","name":"Ultimate + Comics Avengers Vs. New Ultimates: Death of Spider-Man (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9958","name":"Ultimate + Comics Doom (2010 - 2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9196","name":"Ultimate + Comics Enemy (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/9957","name":"Ultimate + Comics Mystery (2010)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/10532","name":"Ultimate + Comics New Ultimates: Thor Reborn (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/8509","name":"Ultimate + Comics Spider-Man (2009 - 2012)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/13831","name":"Ultimate + Comics Spider-Man (2011 - 2013)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14807","name":"Ultimate + Fallout (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/2311","name":"Ultimate + Marvel Team-Up (2001 - 2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1823","name":"Ultimate + Marvel Team-Up Ultimate Collection (2006)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1124","name":"Ultimate + Power (2006 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/466","name":"Ultimate + Spider-Man (2000 - 2009)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1054","name":"Ultimate + Spider-Man Annual (2005 - 2008)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/14744","name":"Ultimate + Spider-Man MGC (2011)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1919","name":"Ultimate + Spider-Man Ultimate Collection Book 1 (2007)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1220","name":"ULTIMATE + SPIDER-MAN VOL. 10: HOLLYWOOD TPB (2008 - 2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1221","name":"Ultimate + Spider-Man Vol. 11: Carnage (2004)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1383","name":"Ultimate + Spider-Man Vol. 12: Superstars (2005)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/1397","name":"Ultimate + Spider-Man Vol. 13: Hobgoblin (2005)"}],"returned":20},"stories":{"available":351,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011010/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/528","name":"Interior + #528","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/529","name":"Interior + #529","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1290","name":"Ultimate + Spider-Man (2000) #68","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1291","name":"1 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1292","name":"Ultimate + Spider-Man (2000) #69","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1293","name":"2 + of 2 - Human Torch","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1307","name":"Interior + #1307","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1309","name":"Interior + #1309","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1311","name":"Interior + #1311","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1313","name":"Interior + #1313","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1314","name":"Ultimate + Spider-Man (2000) #63","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1315","name":"Interior + #1315","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1316","name":"Ultimate + Spider-Man (2000) #62","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1317","name":"Interior + #1317","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1319","name":"Interior + #1319","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1321","name":"Interior + #1321","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1323","name":"Interior + #1323","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1324","name":"Ultimate + Spider-Man (2000) #61","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1325","name":"Interior + #1325","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/1326","name":"Ultimate + Spider-Man (2000) #64","type":"cover"}],"returned":20},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/characters/1011010/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/characters/54/spider-man?utm_campaign=apiRef&utm_source=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Spider-Man_(Ultimate)?utm_campaign=apiRef&utm_source=abcd"},{"type":"comiclink","url":"http://marvel.com/comics/characters/1011010/spider-man_ultimate?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_s_comics_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_s_comics_by_ID.yml new file mode 100644 index 0000000..6fddac3 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_s_comics_by_ID.yml @@ -0,0 +1,48 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/30/comics?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - dee37f4b198fe72c7acdf617b3591b0b2c72fcfb + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:19:34 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"dee37f4b198fe72c7acdf617b3591b0b2c72fcfb","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":965,"digitalId":0,"title":"Essential + Incredible Hulk Vol. II (Trade Paperback)","issueNumber":0,"variantDescription":"","description":"The + second volume containing the Hulk''s early adventures with appearances by + the Sub-Mariner, the Mandarin, Ka-Zar and Nick Fury.","modified":"-0001-11-30T00:00:00-0500","isbn":"0-7851-0795-9","upc":"","diamondCode":"","ean":"","issn":"","format":"Trade + Paperback","pageCount":528,"textObjects":[{"type":"issue_solicit_text","language":"en-us","text":"The + second volume containing the Hulk''s early adventures with appearances by + the Sub-Mariner, the Mandarin, Ka-Zar and Nick Fury."}],"resourceURI":"http://gateway.marvel.com/v1/public/comics/965","urls":[{"type":"detail","url":"http://marvel.com/comics/collection/965/essential_incredible_hulk_vol_ii_trade_paperback?utm_campaign=apiRef&utm_source=abcd"}],"series":{"resourceURI":"http://gateway.marvel.com/v1/public/series/29","name":"Essential + Incredible Hulk Vol. II (1999)"},"variants":[],"collections":[],"collectedIssues":[],"dates":[{"type":"onsaleDate","date":"1999-11-30T00:00:00-0500"},{"type":"focDate","date":"-0001-11-30T00:00:00-0500"}],"prices":[{"type":"printPrice","price":9.99}],"thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/4bc66f4b0e505","extension":"jpg"},"images":[{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/4bc66f4b0e505","extension":"jpg"}],"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/965/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/965/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/comics/965/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30","name":"The + second volume containing the Hulk''s early adventures with appearances by + the Sub-Mariner, the Mandarin, Ka-Zar and Nick Fury","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65107","name":"ESSENTIAL + INCREDIBLE HULK VOL. II TPB 0 cover","type":"cover"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/comics/965/events","items":[],"returned":0}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_s_creators_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_s_creators_by_ID.yml new file mode 100644 index 0000000..9a5bbce --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_s_creators_by_ID.yml @@ -0,0 +1,48 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/25655/creators?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 4019c24439b71e8186dd894d057db4210eb65754 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:22:11 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"4019c24439b71e8186dd894d057db4210eb65754","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":13970,"firstName":"#O","middleName":"","lastName":"","suffix":"","fullName":"#O","modified":"2019-12-11T17:10:07-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/13970","comics":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8546","name":"Earth + X (1999)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/10492","name":"Paradise + X (2002)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/15902","name":"Paradise + X Vol. 1 (Trade Paperback)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/11914","name":"Universe + X (2000)"}],"returned":4},"series":{"available":4,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/378","name":"Earth + X (1999 - 2000)"},{"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/2085","name":"Universe + X (2000 - 2001)"}],"returned":4},"stories":{"available":3,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/25655","name":"interior","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26016","name":"Paradise + X Issue 0","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/26318","name":"interior + Earth X #O","type":"interiorStory"}],"returned":3},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/creators/13970/events","items":[],"returned":0},"urls":[{"type":"detail","url":"http://marvel.com/comics/creators/13970/o?utm_campaign=apiRef&utm_source=abcd"}]}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_s_events_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_s_events_by_ID.yml new file mode 100644 index 0000000..c89c8d9 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_s_events_by_ID.yml @@ -0,0 +1,136 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/12960/events?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 0aba7cc568762e62807597867da0166f6c80e710 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:22:11 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"0aba7cc568762e62807597867da0166f6c80e710","data":{"offset":0,"limit":20,"total":1,"count":1,"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=abcd"},{"type":"wiki","url":"http://marvel.com/universe/Acts_of_Vengeance!?utm_campaign=apiRef&utm_source=abcd"}],"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":102,"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":"Danilo + Bulanadi","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/87","name":"Mark + Bagley","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/211","name":"Mark + Bright","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/2043","name":"Eliot + Brown","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1216","name":"Rich + Buckler","role":"penciler"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1827","name":"John + Byrne","role":"penciler"},{"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/452","name":"Virtual + Calligr","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/44","name":"Chris + Claremont","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/954","name":"Gerry + Conway","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/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/105","name":"Sal + Buscema","role":"penciller (cover)"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/3415","name":"John + Calimee","role":"penciller (cover)"}],"returned":20},"characters":{"available":108,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/characters","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009435","name":"Alicia + Masters"},{"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/1011456","name":"Balder"},{"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 + (Abner Jenkins)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009329","name":"Ben + Grimm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009186","name":"Black + Knight (Sir Percy of Scandia)"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009189","name":"Black + Widow"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1010366","name":"Boom + Boom"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009167","name":"Bruce + Banner"},{"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/1011027","name":"Captain + Universe"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009234","name":"Chameleon"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009239","name":"Clea"}],"returned":20},"stories":{"available":161,"collectionURI":"http://gateway.marvel.com/v1/public/events/116/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/12960","name":"Fantastic + Four (1961) #334","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":"Fantastic + Four (1961) #335","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":"Fantastic + Four (1961) #336","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":"Amazing + Spider-Man (1963) #326","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14057","name":"Amazing + Spider-Man (1963) #326","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14058","name":"Amazing + Spider-Man (1963) #327","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":"Amazing + Spider-Man (1963) #328","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":"Amazing + Spider-Man (1963) #329","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14063","name":"Amazing + Spider-Man (1963) #329","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14916","name":"AVENGERS + (1963) #311","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","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","type":"cover"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/14921","name":"Thieves + Honor","type":"interiorStory"}],"returned":20},"comics":{"available":53,"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/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/17774","name":"Avengers + Annual (1967) #19 (Variant)"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17795","name":"West + Coast Avengers (1985) #53"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17796","name":"West + Coast Avengers (1985) #54"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17797","name":"West + Coast Avengers (1985) #55"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/17695","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964) #275"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/8269","name":"Daredevil + (1964) #276"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20170","name":"Doctor + Strange, Sorcerer Supreme (1988) #11"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20171","name":"Doctor + Strange, Sorcerer Supreme (1988) #12"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/20172","name":"Doctor + Strange, Sorcerer Supreme (1988) #13"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/13155","name":"Fantastic + Four (1961) #334"}],"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/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/3462","name":"AVENGERS + WEST COAST: DARKER THAN SCARLET TPB (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 + (1964 - 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/1987","name":"The + Amazing Spider-Man (1963 - 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)"},{"resourceURI":"http://gateway.marvel.com/v1/public/series/3630","name":"West + Coast Avengers (1985 - 1994)"}],"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"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_a_story_s_series_by_ID.yml b/spec/vcr/Harkness_StoryResource/gets_a_story_s_series_by_ID.yml new file mode 100644 index 0000000..cd2b603 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_a_story_s_series_by_ID.yml @@ -0,0 +1,44 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories/30/series?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 33002f3149f651d69d15473e70af27000edca120 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 15:19:34 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"33002f3149f651d69d15473e70af27000edca120","data":{"offset":0,"limit":20,"total":1,"count":1,"results":[{"id":29,"title":"Essential + Incredible Hulk Vol. II (1999)","description":null,"resourceURI":"http://gateway.marvel.com/v1/public/series/29","urls":[{"type":"detail","url":"http://marvel.com/comics/series/29/essential_incredible_hulk_vol_ii_1999?utm_campaign=apiRef&utm_source=abcd"}],"startYear":1999,"endYear":1999,"rating":"ALL + AGES","type":"collection","modified":"-0001-11-30T00:00:00-0500","thumbnail":{"path":"http://i.annihil.us/u/prod/marvel/i/mg/9/10/4bc66f4b0e505","extension":"jpg"},"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29/characters","items":[],"returned":0},"stories":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/series/29/stories","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/stories/30","name":"The + second volume containing the Hulk''s early adventures with appearances by + the Sub-Mariner, the Mandarin, Ka-Zar and Nick Fury","type":"interiorStory"},{"resourceURI":"http://gateway.marvel.com/v1/public/stories/65107","name":"ESSENTIAL + INCREDIBLE HULK VOL. II TPB 0 cover","type":"cover"}],"returned":2},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/series/29/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/965","name":"Essential + Incredible Hulk Vol. II (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/series/29/events","items":[],"returned":0},"next":null,"previous":null}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_stories.yml b/spec/vcr/Harkness_StoryResource/gets_stories.yml new file mode 100644 index 0000000..626184d --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_stories.yml @@ -0,0 +1,152 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories?apikey=abcd&hash=a09f8647b1786ba2816888715a24ccc6&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - f1011eec2981e45ff2756f92e2bb8d7cc10a718e + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:34:41 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"f1011eec2981e45ff2756f92e2bb8d7cc10a718e","data":{"offset":0,"limit":20,"total":124932,"count":20,"results":[{"id":7,"title":"Investigating + the murder of a teenage girl, Cage suddenly learns that a three-way gang war + is under way for control of the turf","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/7","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/6","name":"CAGE + HC (2002)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/941","name":"CAGE + HC (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/7/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/941","name":"CAGE + HC (Hardcover)"}},{"id":8,"title":"In the wake of September 11th, the world + watched as firefighters, police officers and EMT workers selflessly risked + their lives","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/8","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/8/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/8/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/8/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/7","name":"THE + CALL OF DUTY VOL. 1: THE BROTHERHOOD AND THE WAGON TPB (2002)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/8/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/942","name":"THE + CALL OF DUTY VOL. 1: THE BROTHERHOOD AND THE WAGON TPB (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/8/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/942","name":"THE + CALL OF DUTY VOL. 1: THE BROTHERHOOD AND THE WAGON TPB (Trade Paperback)"}},{"id":9,"title":"Ordinary + New York City cop Frankie "Gunz" Gunzer now has a new call to duty + Ñ not just to uphold the law, but to save ","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/9","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/9/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/9/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/9/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/8","name":"Call, + the Vol. 2: The Precinct (2003)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/9/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/943","name":"Call, + the Vol. 2: The Precinct (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/9/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/943","name":"Call, + the Vol. 2: The Precinct (Trade Paperback)"}},{"id":10,"title":"In this thought-provoking + anthology, a world-class collection of top comic-book creators from around + the globe presents a series","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/10","type":"story","modified":"2014-01-27T00:00:00-0500","thumbnail":null,"creators":{"available":5,"collectionURI":"http://gateway.marvel.com/v1/public/stories/10/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/9181","name":"Nick + Bertozzi","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/13055","name":"Richard + Isanove","role":"colorist"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/421","name":"Karl + Bollers","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/312","name":"Mike + Deodato","role":"inker"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/365","name":"Pasqual + Ferry","role":"inker"}],"returned":5},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/10/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/10/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/9","name":"Captain + America: Red, White & Blue (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/10/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/944","name":"Captain + America: Red, White & Blue (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/10/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/944","name":"Captain + America: Red, White & Blue (Hardcover)"}},{"id":11,"title":"Interior #11","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/11","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/10","name":"Captain + Britain Vol. I (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/945","name":"Captain + Britain Vol. I (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/11/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/945","name":"Captain + Britain Vol. I (Trade Paperback)"}},{"id":12,"title":"Presenting visionary + writer/artist Frank Miller''s unique take on the world-famous wall-crawler + Ñ including appearances by the Pu","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/12","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/12/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/12/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/12/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/11","name":"SPIDER-MAN: + THE COMPLETE FRANK MILLER HC (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/12/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/946","name":"SPIDER-MAN: + THE COMPLETE FRANK MILLER HC (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/12/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/946","name":"SPIDER-MAN: + THE COMPLETE FRANK MILLER HC (Hardcover)"}},{"id":14,"title":"Karen Page, + Daredevil''s former lover, trades away Daredevil''s identity for a drug fix. Matt + Murdock must find strength as the K","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/14","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/14/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/14/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/14/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/13","name":"Daredevil + Legends Vol. II: Born Again (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/14/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/948","name":"Daredevil + Legends Vol. II: Born Again (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/14/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/948","name":"Daredevil + Legends Vol. II: Born Again (Trade Paperback)"}},{"id":15,"title":"This classic + tale explores Matt Murdock''s formative years Ñ detailing the relationship + between him and his father, and the event","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/15","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/14","name":"Daredevil + Legends Vol. III: Man Without Fear (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/949","name":"Daredevil + Legends Vol. III: Man Without Fear (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/949","name":"Daredevil + Legends Vol. III: Man Without Fear (Trade Paperback)"}},{"id":16,"title":"Frank + Miller''s Daredevil submerged us in a world where heroes, pushed to the brink + of madness, were allowed to mirror the human ","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/16","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/16/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/16/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/16/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/15","name":"Daredevil + Visionaries: Frank Miller Vol. I (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/16/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/950","name":"Daredevil + Visionaries: Frank Miller Vol. I (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/16/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/950","name":"Daredevil + Visionaries: Frank Miller Vol. I (Trade Paperback)"}},{"id":17,"title":"This + volume features the gritty, street-level action and moody atmosphere that + made Miller''s Daredevil classic Ñ including appea","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/17","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/17/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/17/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/17/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/16","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 2 TPB (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/17/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/951","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 2 TPB (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/17/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/951","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 2 TPB (Trade Paperback)"}},{"id":18,"title":"Concluding + Miller''s complete run, the Man Without Fear faces the Kingpin of Crime and + the Hand Ñ and must come to grips with t","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/18","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/18/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/18/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/18/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/17","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 3 TPB (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/18/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/952","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 3 TPB (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/18/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/952","name":"DAREDEVIL + VISIONARIES: FRANK MILLER VOL. 3 TPB (Trade Paperback)"}},{"id":20,"title":"Maya + Lopez Ñ deaf, but capable of assimilating an individual''s fighting style + on sight Ñ has set her sights on Daredevil, who sh","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/20","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/20/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/20/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/20/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/19","name":"DAREDEVIL/ECHO: + PARTS OF A HOLE PREMIERE HC (2010 - 1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/20/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/954","name":"DAREDEVIL/ECHO: + PARTS OF A HOLE PREMIERE HC (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/20/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/954","name":"DAREDEVIL/ECHO: + PARTS OF A HOLE PREMIERE HC (Hardcover)"}},{"id":22,"title":"A contract on + Matt Murdock''s life is somehow connected to the Kingpin''s apparent murder + at the hands of the mysterious Mr. Silke","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/22","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/22/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian + Michael Bendis","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/25","name":"Alex + Maleev","role":"penciller"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/22/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/22/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/21","name":"Daredevil + Vol. IV: Underboss (2002)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/22/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/956","name":"Daredevil + Vol. IV: Underboss (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/22/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/956","name":"Daredevil + Vol. IV: Underboss (Trade Paperback)"}},{"id":23,"title":"A down-on-his-luck + FBI agent has sold the hero''s most guarded secret to a tabloid newspaper, + exposing Daredevil''s identity to th","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/23","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/23/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/23/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/23/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/22","name":"DAREDEVIL + VOL. 5: OUT TPB (2005)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/23/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/957","name":"DAREDEVIL + VOL. 5: OUT TPB (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/23/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/957","name":"DAREDEVIL + VOL. 5: OUT TPB (Trade Paperback)"}},{"id":24,"title":"Elektra: Assassin Ñ + the story of how a tragic murder transformed an innocent, na•ve college student + into a deadly assassin, and ","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/24","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/17","name":"Frank + Miller","role":"writer"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/26","name":"Bill + Sienkiewicz","role":"penciller"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/23","name":"Daredevil/Elektra: + Love & War (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/958","name":"Daredevil/Elektra: + Love & War (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/24/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/958","name":"Daredevil/Elektra: + Love & War (Hardcover)"}},{"id":26,"title":"Haunted by her own father''s death, + Elektra finds that killing her latest target''s daughter Ñ the only witness + to the murder Ñ is","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/26","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/29","name":"Yoshitaka + Amano","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/28","name":"Greg + Rucka","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/25","name":"Elektra + & Wolverine: The Redeemer (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/960","name":"Elektra + & Wolverine: The Redeemer (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/26/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/960","name":"Elektra + & Wolverine: The Redeemer (Hardcover)"}},{"id":27,"title":"Despite the fact + that Elektra died in his arms, Daredevil is plagued by recurring nightmares + and terrible premonitions that his ","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/27","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/17","name":"Frank + Miller","role":"writer"}],"returned":1},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/26","name":"Elektra + Lives Again (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/961","name":"Elektra + Lives Again (Hardcover)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/27/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/961","name":"Elektra + Lives Again (Hardcover)"}},{"id":28,"title":"S.H.I.E.L.D. offers Elektra a + mission so dirty, so difficult, no one else could pull it off. But if Elektra + takes the job, she''","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/28","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/11","name":"Chuck + Austen","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/24","name":"Brian + Michael Bendis","role":"writer"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/27","name":"Elektra: + The Scorpio Key (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/962","name":"Elektra: + The Scorpio Key (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/28/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/962","name":"Elektra: + The Scorpio Key (Trade Paperback)"}},{"id":29,"title":"Caught in the heart + of a nuclear explosion, mild-mannered scientist Bruce Banner finds himself + Ñ during moments of extreme stres","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/29","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/29/creators","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/creators/1612","name":"John + Buscema","role":"penciller"},{"resourceURI":"http://gateway.marvel.com/v1/public/creators/32","name":"Steve + Ditko","role":"penciller"}],"returned":2},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/29/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/29/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/28","name":"Essential + Incredible Hulk Vol. I (2002)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/29/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/964","name":"Essential + Incredible Hulk Vol. I (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/29/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/964","name":"Essential + Incredible Hulk Vol. I (Trade Paperback)"}},{"id":30,"title":"The second volume + containing the Hulk''s early adventures with appearances by the Sub-Mariner, + the Mandarin, Ka-Zar and Nick Fury","description":"","resourceURI":"http://gateway.marvel.com/v1/public/stories/30","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/30/creators","items":[],"returned":0},"characters":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/30/characters","items":[],"returned":0},"series":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/30/series","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/series/29","name":"Essential + Incredible Hulk Vol. II (1999)"}],"returned":1},"comics":{"available":1,"collectionURI":"http://gateway.marvel.com/v1/public/stories/30/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/965","name":"Essential + Incredible Hulk Vol. II (Trade Paperback)"}],"returned":1},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/30/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/965","name":"Essential + Incredible Hulk Vol. II (Trade Paperback)"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0 diff --git a/spec/vcr/Harkness_StoryResource/gets_stories_with_params.yml b/spec/vcr/Harkness_StoryResource/gets_stories_with_params.yml new file mode 100644 index 0000000..0a9f562 --- /dev/null +++ b/spec/vcr/Harkness_StoryResource/gets_stories_with_params.yml @@ -0,0 +1,47 @@ +--- +http_interactions: + - request: + method: get + uri: https://gateway.marvel.com/v1/public/stories?apikey=abcd&comics=1332&hash=a09f8647b1786ba2816888715a24ccc6&limit=1&ts=1678320000 + body: + encoding: US-ASCII + string: "" + headers: + User-Agent: + - Faraday v2.7.4 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Etag: + - 2c4ac69e87f5cb6a0d8ff67c5debe6361f7fec52 + Content-Type: + - application/json; charset=utf-8 + Date: + - Sun, 12 Mar 2023 01:34:42 GMT + Connection: + - keep-alive + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: + '{"code":200,"status":"Ok","copyright":"© 2023 MARVEL","attributionText":"Data + provided by Marvel. © 2023 MARVEL","attributionHTML":"Data + provided by Marvel. © 2023 MARVEL","etag":"2c4ac69e87f5cb6a0d8ff67c5debe6361f7fec52","data":{"offset":0,"limit":1,"total":3,"count":1,"results":[{"id":15472,"title":"Days + of Future Past","description":"Rachel Summers sends Kitty Pryde back in time + from 2013 to warn the X-Men that the new Brotherhood of Evil Mutants will + try to kill Senator Kelly and begin a chain of events that spells doom for + mutants.","resourceURI":"http://gateway.marvel.com/v1/public/stories/15472","type":"story","modified":"1969-12-31T19:00:00-0500","thumbnail":null,"creators":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/creators","items":[],"returned":0},"characters":{"available":10,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/characters","items":[{"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/1009199","name":"Blob"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009243","name":"Colossus"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009271","name":"Destiny"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009472","name":"Nightcrawler"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009522","name":"Pyro"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009629","name":"Storm"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009718","name":"Wolverine"},{"resourceURI":"http://gateway.marvel.com/v1/public/characters/1009726","name":"X-Men"}],"returned":10},"series":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/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/1327","name":"X-Men: + Days of Future Past (2004)"}],"returned":2},"comics":{"available":2,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/comics","items":[{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"},{"resourceURI":"http://gateway.marvel.com/v1/public/comics/1332","name":"X-Men: + Days of Future Past (Trade Paperback)"}],"returned":2},"events":{"available":0,"collectionURI":"http://gateway.marvel.com/v1/public/stories/15472/events","items":[],"returned":0},"originalIssue":{"resourceURI":"http://gateway.marvel.com/v1/public/comics/12460","name":"Uncanny + X-Men (1963) #141"}}]}}' + recorded_at: Thu, 09 Mar 2023 00:00:00 GMT +recorded_with: VCR 6.1.0