ultron 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.gitignore +3 -1
 - data/.rspec +1 -1
 - data/.travis.yml +7 -0
 - data/{LICENSE.txt → LICENSE.md} +2 -2
 - data/README.md +19 -21
 - data/Rakefile +1 -1
 - data/config/params.yaml +0 -0
 - data/config/ultron.yaml +2 -0
 - data/examples/links.rb +0 -0
 - data/lib/ultron.rb +29 -4
 - data/lib/ultron/api/character.rb +19 -0
 - data/lib/ultron/api/characters.rb +14 -0
 - data/lib/ultron/api/comic.rb +15 -0
 - data/lib/ultron/api/comics.rb +14 -0
 - data/lib/ultron/api/creator.rb +19 -0
 - data/lib/ultron/api/creators.rb +14 -0
 - data/lib/ultron/api/entities.rb +45 -0
 - data/lib/ultron/api/entity.rb +51 -0
 - data/lib/ultron/api/event.rb +15 -0
 - data/lib/ultron/api/events.rb +14 -0
 - data/lib/ultron/api/series.rb +23 -0
 - data/lib/ultron/api/serieses.rb +16 -0
 - data/lib/ultron/api/stories.rb +14 -0
 - data/lib/ultron/api/story.rb +15 -0
 - data/lib/ultron/config.rb +35 -0
 - data/lib/ultron/connection.rb +41 -0
 - data/lib/ultron/helpers.rb +25 -0
 - data/lib/ultron/version.rb +1 -1
 - data/spec/cassettes/Ultron_API_Character/should_have_a_series_set.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_an_events_set.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_name.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_sets/events.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_not_have_any_events.yml +32 -0
 - data/spec/cassettes/Ultron_API_CharacterSet/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/characters_filtered_by_comic/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_comic.yml +1862 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_event.yml +3876 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_story.yml +345 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_id.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_id.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_name.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_id.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_name.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_resourceURI.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/parameterize_the_request/should_let_us_set_multiple_parameters.yml +1595 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_comic.yml +2737 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_event.yml +7345 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_story.yml +231 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_genarate_a_list_of_characters_filtered_by_comic.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_a_list_of_characters_filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_lists_of_characters/filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_a_list_of_characters.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_openstruct_method-style_attribute_accessors.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_title.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_year.yml +46 -0
 - data/spec/cassettes/Ultron_API_ComicSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_character.yml +2059 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_creator.yml +2177 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_event.yml +1701 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_series.yml +123 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_stories.yml +499 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_story.yml +577 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_id.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_name.yml +946 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_resourceURI.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_title.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_dateRange.yml +1613 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_limit.yml +96 -0
 - data/spec/cassettes/Ultron_API_Comics/should_generate_a_list_of_comics_filtered_by_character.yml +3955 -0
 - data/spec/cassettes/Ultron_API_Comics/should_have_the_correct_first_comic.yml +2012 -0
 - data/spec/cassettes/Ultron_API_ComicsSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Creator/it_should_have_the_correct_sets/comics.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_a_comics_set.yml +2022 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_comic.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_name.yml +243 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_comic.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_event.yml +2778 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_series.yml +4555 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_story.yml +1253 -0
 - data/spec/cassettes/Ultron_API_Creators/get_a_creator_by_name/should_return_the_correct_creator.yml +30 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_fourth_creator_off_the_list/should_have_the_right_name.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_second_creator_off_the_list/should_have_the_right_name.yml +384 -0
 - data/spec/cassettes/Ultron_API_Creators/should_have_the_correct_first_comic.yml +32 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_a_list_of_creators_filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_lists_of_creators/filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_a_list_of_characters.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_first_character.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_title.yml +108 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_character.yml +5161 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_comic.yml +363 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_creator.yml +9257 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_series.yml +240 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_story.yml +375 -0
 - data/spec/cassettes/Ultron_API_Events/get_the_second_event_off_the_list/should_have_the_right_name.yml +4762 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_sets/not_series.yml +40 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_character.yml +3618 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_creator.yml +1104 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_event.yml +591 -0
 - data/spec/cassettes/Ultron_API_Serieses/get_the_third_event_off_the_list/should_have_the_right_name.yml +1780 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml +31 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_character.yml +342 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_comic.yml +110 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_creator.yml +1041 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_event.yml +846 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_series.yml +143 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_fourth_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_second_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Story/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +559 -0
 - data/spec/spec_helper.rb +3 -0
 - data/spec/support/vcr_setup.rb +17 -0
 - data/spec/ultron/api/character_spec.rb +50 -0
 - data/spec/ultron/api/comic_spec.rb +55 -0
 - data/spec/ultron/api/creator_spec.rb +50 -0
 - data/spec/ultron/api/event_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/characters_filtered_spec.rb +53 -0
 - data/spec/ultron/api/filtered_sets/comics_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/creators_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/events_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/series_filtered_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/stories_filtered_spec.rb +52 -0
 - data/spec/ultron/api/series_spec.rb +46 -0
 - data/spec/ultron/api/sets/characters_spec.rb +71 -0
 - data/spec/ultron/api/sets/comics_spec.rb +46 -0
 - data/spec/ultron/api/sets/creators_spec.rb +29 -0
 - data/spec/ultron/api/sets/events_spec.rb +26 -0
 - data/spec/ultron/api/sets/serieses_spec.rb +26 -0
 - data/spec/ultron/api/sets/stories_spec.rb +26 -0
 - data/spec/ultron/api/story_spec.rb +46 -0
 - data/spec/ultron/auth_spec.rb +13 -0
 - data/spec/ultron/config_spec.rb +16 -0
 - data/spec/ultron/connection_spec.rb +33 -0
 - data/spec/ultron/helpers_spec.rb +11 -0
 - data/ultron.gemspec +16 -11
 - metadata +346 -50
 - data/lib/ultron/characters.rb +0 -9
 - data/spec/ultron/characters_spec.rb +0 -12
 
    
        data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml
    ADDED
    
    | 
         @@ -0,0 +1,114 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&name=Hulk&ts=1391894400
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 12 
     | 
    
         
            +
              response:
         
     | 
| 
      
 13 
     | 
    
         
            +
                status:
         
     | 
| 
      
 14 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - a81da1024c59e0f1fae203da388374c77da99fd2
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '9670'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Sun, 09 Feb 2014 20:11:36 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"a81da1024c59e0f1fae203da388374c77da99fd2\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009351,\"name\":\"Hulk\",\"description\":\"Caught
         
     | 
| 
      
 30 
     | 
    
         
            +
                    in a gamma bomb explosion while trying to save the life of a teenager, Dr.
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Bruce Banner was transformed into the incredibly powerful creature called
         
     | 
| 
      
 32 
     | 
    
         
            +
                    the Hulk. An all too often misunderstood hero, the angrier the Hulk gets,
         
     | 
| 
      
 33 
     | 
    
         
            +
                    the stronger the Hulk gets.\",\"modified\":\"2014-01-21T18:01:51-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/03/526039b477c92\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"comics\":{\"available\":1303,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41112\",\"name\":\"5
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36365\",\"name\":\"5
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Ronin (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38753\",\"name\":\"5
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Ronin (2010) #2 (BROOKS COVER)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/320\",\"name\":\"Actor
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Presents Spider-Man and the Incredible Hulk (2003) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
         
     | 
| 
      
 38 
     | 
    
         
            +
                    of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24252\",\"name\":\"All-New
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Savage She-Hulk (2009) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12650\",\"name\":\"Alpha
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Flight (1983) #110\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12651\",\"name\":\"Alpha
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Flight (1983) #111\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6504\",\"name\":\"Amazing
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Spider-Man (1963) #119\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35528\",\"name\":\"Amazing
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Spider-Man (1999) #667\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16904\",\"name\":\"Amazing
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Spider-Man Annual (1964) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16886\",\"name\":\"Amazing
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Spider-Man Annual (1964) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6951\",\"name\":\"Avengers
         
     | 
| 
      
 47 
     | 
    
         
            +
                    (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6952\",\"name\":\"Avengers
         
     | 
| 
      
 48 
     | 
    
         
            +
                    (1996) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17490\",\"name\":\"Avengers
         
     | 
| 
      
 49 
     | 
    
         
            +
                    (1998) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7174\",\"name\":\"Avengers
         
     | 
| 
      
 50 
     | 
    
         
            +
                    (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17758\",\"name\":\"Avengers
         
     | 
| 
      
 51 
     | 
    
         
            +
                    (1996) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17523\",\"name\":\"Avengers
         
     | 
| 
      
 52 
     | 
    
         
            +
                    (1998) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17759\",\"name\":\"Avengers
         
     | 
| 
      
 53 
     | 
    
         
            +
                    (1996) #5\"}],\"returned\":20},\"series\":{\"available\":314,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12429\",\"name\":\"5
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Ronin (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15276\",\"name\":\"5
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Ronin (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/458\",\"name\":\"Actor
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Presents Spider-Man and the Incredible Hulk (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
         
     | 
| 
      
 57 
     | 
    
         
            +
                    of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7231\",\"name\":\"All-New
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Savage She-Hulk (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"name\":\"Amazing
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Spider-Man (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2984\",\"name\":\"Amazing
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Spider-Man Annual (1964 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 63 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 64 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 65 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
         
     | 
| 
      
 66 
     | 
    
         
            +
                    (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9859\",\"name\":\"Avengers
         
     | 
| 
      
 67 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10035\",\"name\":\"Avengers
         
     | 
| 
      
 68 
     | 
    
         
            +
                    & the Infinity Gauntlet (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1988\",\"name\":\"Avengers
         
     | 
| 
      
 69 
     | 
    
         
            +
                    Annual (1967 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15373\",\"name\":\"AVENGERS
         
     | 
| 
      
 70 
     | 
    
         
            +
                    ASSEMBLE (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1340\",\"name\":\"Avengers
         
     | 
| 
      
 71 
     | 
    
         
            +
                    Assemble (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1816\",\"name\":\"Avengers
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Assemble Vol. 4 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2384\",\"name\":\"Avengers
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Classic (2007 - 2008)\"}],\"returned\":20},\"stories\":{\"available\":1972,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/703\",\"name\":\"Interior
         
     | 
| 
      
 74 
     | 
    
         
            +
                    #703\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/705\",\"name\":\"Interior
         
     | 
| 
      
 75 
     | 
    
         
            +
                    #705\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/707\",\"name\":\"Interior
         
     | 
| 
      
 76 
     | 
    
         
            +
                    #707\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/873\",\"name\":\"Interior
         
     | 
| 
      
 77 
     | 
    
         
            +
                    #873\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/875\",\"name\":\"Interior
         
     | 
| 
      
 78 
     | 
    
         
            +
                    #875\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1134\",\"name\":\"Interior
         
     | 
| 
      
 79 
     | 
    
         
            +
                    #1134\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1218\",\"name\":\"Interior
         
     | 
| 
      
 80 
     | 
    
         
            +
                    #1218\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1220\",\"name\":\"Interior
         
     | 
| 
      
 81 
     | 
    
         
            +
                    #1220\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1222\",\"name\":\"Interior
         
     | 
| 
      
 82 
     | 
    
         
            +
                    #1222\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1224\",\"name\":\"Interior
         
     | 
| 
      
 83 
     | 
    
         
            +
                    #1224\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1226\",\"name\":\"Interior
         
     | 
| 
      
 84 
     | 
    
         
            +
                    #1226\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1228\",\"name\":\"Interior
         
     | 
| 
      
 85 
     | 
    
         
            +
                    #1228\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1230\",\"name\":\"Interior
         
     | 
| 
      
 86 
     | 
    
         
            +
                    #1230\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1232\",\"name\":\"Interior
         
     | 
| 
      
 87 
     | 
    
         
            +
                    #1232\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1233\",\"name\":\"Interior
         
     | 
| 
      
 88 
     | 
    
         
            +
                    #1233\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1234\",\"name\":\"1
         
     | 
| 
      
 89 
     | 
    
         
            +
                    of 6 - Tempus Fugit\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1235\",\"name\":\"1
         
     | 
| 
      
 90 
     | 
    
         
            +
                    of 6 - Tempus Fugit\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1236\",\"name\":\"2
         
     | 
| 
      
 91 
     | 
    
         
            +
                    of 6 - Tempus Fugit\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1237\",\"name\":\"2
         
     | 
| 
      
 92 
     | 
    
         
            +
                    of 6 - Tempus Fugit\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1239\",\"name\":\"3
         
     | 
| 
      
 93 
     | 
    
         
            +
                    of 5 - Tempest Fugit\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":23,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 94 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 95 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 96 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 97 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/297\",\"name\":\"Fall
         
     | 
| 
      
 99 
     | 
    
         
            +
                    of the Hulks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 100 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 101 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 102 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 104 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/212\",\"name\":\"Planet
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/295\",\"name\":\"Realm
         
     | 
| 
      
 107 
     | 
    
         
            +
                    of Kings\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 108 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 109 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Heroes\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009351/hulk?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Hulk_(Bruce_Banner)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 112 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 113 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 114 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,99 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&name=Doctor%20Doom&ts=1391894400
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 12 
     | 
    
         
            +
              response:
         
     | 
| 
      
 13 
     | 
    
         
            +
                status:
         
     | 
| 
      
 14 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - 75d427458098640cba9008fa8dbfb026e94deade
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '8750'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Sun, 09 Feb 2014 20:11:41 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"75d427458098640cba9008fa8dbfb026e94deade\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009281,\"name\":\"Doctor
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Doom\",\"description\":\"\",\"modified\":\"2013-11-01T11:39:37-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/90/5273cac0ac417\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009281\",\"comics\":{\"available\":183,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1875\",\"name\":\"4
         
     | 
| 
      
 31 
     | 
    
         
            +
                    (2004) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2189\",\"name\":\"4
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Vol. 3: Divine Time (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29317\",\"name\":\"ACTS
         
     | 
| 
      
 33 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29318\",\"name\":\"ACTS
         
     | 
| 
      
 34 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37902\",\"name\":\"Amazing
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Spider-Man (1999) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6952\",\"name\":\"Avengers
         
     | 
| 
      
 37 
     | 
    
         
            +
                    (1996) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7015\",\"name\":\"Avengers
         
     | 
| 
      
 38 
     | 
    
         
            +
                    (1963) #156\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7211\",\"name\":\"Avengers
         
     | 
| 
      
 39 
     | 
    
         
            +
                    (1963) #332\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7212\",\"name\":\"Avengers
         
     | 
| 
      
 40 
     | 
    
         
            +
                    (1963) #333\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32993\",\"name\":\"Avengers
         
     | 
| 
      
 41 
     | 
    
         
            +
                    & the Infinity Gauntlet (Graphic Novel)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32479\",\"name\":\"Avengers
         
     | 
| 
      
 42 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32481\",\"name\":\"Avengers
         
     | 
| 
      
 43 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23060\",\"name\":\"Avengers:
         
     | 
| 
      
 44 
     | 
    
         
            +
                    First to Last (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23057\",\"name\":\"Avengers:
         
     | 
| 
      
 45 
     | 
    
         
            +
                    First to Last Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38892\",\"name\":\"Avengers:
         
     | 
| 
      
 46 
     | 
    
         
            +
                    The Children's Crusade (2011) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31140\",\"name\":\"Avengers:
         
     | 
| 
      
 47 
     | 
    
         
            +
                    The Childrens Crusade (2010) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31146\",\"name\":\"Avengers:
         
     | 
| 
      
 48 
     | 
    
         
            +
                    The Childrens Crusade (2010) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23823\",\"name\":\"Black
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Panther (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29742\",\"name\":\"Black
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Widow & the Marvel Girls (2009) #2\"}],\"returned\":20},\"series\":{\"available\":104,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/725\",\"name\":\"4
         
     | 
| 
      
 51 
     | 
    
         
            +
                    (2004 - 2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1423\",\"name\":\"4
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Vol. 3: Divine Time (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9994\",\"name\":\"ACTS
         
     | 
| 
      
 53 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9995\",\"name\":\"ACTS
         
     | 
| 
      
 54 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 57 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 58 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10035\",\"name\":\"Avengers
         
     | 
| 
      
 59 
     | 
    
         
            +
                    & the Infinity Gauntlet (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9859\",\"name\":\"Avengers
         
     | 
| 
      
 60 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6476\",\"name\":\"Avengers:
         
     | 
| 
      
 61 
     | 
    
         
            +
                    First to Last (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6473\",\"name\":\"Avengers:
         
     | 
| 
      
 62 
     | 
    
         
            +
                    First to Last Premiere (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10056\",\"name\":\"Avengers:
         
     | 
| 
      
 63 
     | 
    
         
            +
                    The Children's Crusade (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9864\",\"name\":\"Avengers:
         
     | 
| 
      
 64 
     | 
    
         
            +
                    The Childrens Crusade (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6804\",\"name\":\"Black
         
     | 
| 
      
 65 
     | 
    
         
            +
                    Panther (2008 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9120\",\"name\":\"Black
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Widow & the Marvel Girls (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1123\",\"name\":\"Blade
         
     | 
| 
      
 67 
     | 
    
         
            +
                    (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2236\",\"name\":\"Blade:
         
     | 
| 
      
 68 
     | 
    
         
            +
                    Undead Again (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8213\",\"name\":\"Captain
         
     | 
| 
      
 69 
     | 
    
         
            +
                    America: Reborn (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1721\",\"name\":\"Champions
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Classic Vol. 2 (2007)\"}],\"returned\":20},\"stories\":{\"available\":183,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/3071\",\"name\":\"3
         
     | 
| 
      
 71 
     | 
    
         
            +
                    of 4 - Divine Time\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5132\",\"name\":\"3
         
     | 
| 
      
 72 
     | 
    
         
            +
                    of 3 - 3XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5496\",\"name\":\"1
         
     | 
| 
      
 73 
     | 
    
         
            +
                    of 6 -\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6174\",\"name\":\"1
         
     | 
| 
      
 74 
     | 
    
         
            +
                    of 1 - Dr. Doom and Latveria\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7874\",\"name\":\"3
         
     | 
| 
      
 75 
     | 
    
         
            +
                    of 3 - Story C\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8325\",\"name\":\"3
         
     | 
| 
      
 76 
     | 
    
         
            +
                    of 3 - Story C\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12402\",\"name\":\"The
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Return of Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12403\",\"name\":\"Part
         
     | 
| 
      
 78 
     | 
    
         
            +
                    2 \\\"Back from the Dead!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12404\",\"name\":\"Part
         
     | 
| 
      
 79 
     | 
    
         
            +
                    3 \\\"The End of Mr. Fantastic?\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12405\",\"name\":\"Part
         
     | 
| 
      
 80 
     | 
    
         
            +
                    4 \\\"No Place to Turn!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12406\",\"name\":\"Part
         
     | 
| 
      
 81 
     | 
    
         
            +
                    5 \\\"The Real Doctor Doom!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12563\",\"name\":\"Defeated
         
     | 
| 
      
 82 
     | 
    
         
            +
                    by Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12755\",\"name\":\"Cover
         
     | 
| 
      
 83 
     | 
    
         
            +
                    #12755\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12757\",\"name\":\"Cover
         
     | 
| 
      
 84 
     | 
    
         
            +
                    #12757\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12782\",\"name\":\"Cover
         
     | 
| 
      
 85 
     | 
    
         
            +
                    #12782\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12783\",\"name\":\"Interlude\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12784\",\"name\":\"Three
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Against Doomsday!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12785\",\"name\":\"Choices\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12789\",\"name\":\"When
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Titans Clash\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12828\",\"name\":\"Cover
         
     | 
| 
      
 88 
     | 
    
         
            +
                    #12828\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":9,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 89 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 92 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 93 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Wars II\"}],\"returned\":9},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009281/doctor_doom?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Doctor_Doom_%28Victor_von_Doom%29?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 97 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 98 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 99 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,99 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&name=Doctor%20Doom&ts=1391894400
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 12 
     | 
    
         
            +
              response:
         
     | 
| 
      
 13 
     | 
    
         
            +
                status:
         
     | 
| 
      
 14 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - 75d427458098640cba9008fa8dbfb026e94deade
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '8750'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Sun, 09 Feb 2014 20:11:41 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"75d427458098640cba9008fa8dbfb026e94deade\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009281,\"name\":\"Doctor
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Doom\",\"description\":\"\",\"modified\":\"2013-11-01T11:39:37-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/90/5273cac0ac417\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009281\",\"comics\":{\"available\":183,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1875\",\"name\":\"4
         
     | 
| 
      
 31 
     | 
    
         
            +
                    (2004) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2189\",\"name\":\"4
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Vol. 3: Divine Time (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29317\",\"name\":\"ACTS
         
     | 
| 
      
 33 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29318\",\"name\":\"ACTS
         
     | 
| 
      
 34 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37902\",\"name\":\"Amazing
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Spider-Man (1999) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6952\",\"name\":\"Avengers
         
     | 
| 
      
 37 
     | 
    
         
            +
                    (1996) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7015\",\"name\":\"Avengers
         
     | 
| 
      
 38 
     | 
    
         
            +
                    (1963) #156\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7211\",\"name\":\"Avengers
         
     | 
| 
      
 39 
     | 
    
         
            +
                    (1963) #332\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7212\",\"name\":\"Avengers
         
     | 
| 
      
 40 
     | 
    
         
            +
                    (1963) #333\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32993\",\"name\":\"Avengers
         
     | 
| 
      
 41 
     | 
    
         
            +
                    & the Infinity Gauntlet (Graphic Novel)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32479\",\"name\":\"Avengers
         
     | 
| 
      
 42 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32481\",\"name\":\"Avengers
         
     | 
| 
      
 43 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23060\",\"name\":\"Avengers:
         
     | 
| 
      
 44 
     | 
    
         
            +
                    First to Last (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23057\",\"name\":\"Avengers:
         
     | 
| 
      
 45 
     | 
    
         
            +
                    First to Last Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38892\",\"name\":\"Avengers:
         
     | 
| 
      
 46 
     | 
    
         
            +
                    The Children's Crusade (2011) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31140\",\"name\":\"Avengers:
         
     | 
| 
      
 47 
     | 
    
         
            +
                    The Childrens Crusade (2010) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31146\",\"name\":\"Avengers:
         
     | 
| 
      
 48 
     | 
    
         
            +
                    The Childrens Crusade (2010) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23823\",\"name\":\"Black
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Panther (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29742\",\"name\":\"Black
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Widow & the Marvel Girls (2009) #2\"}],\"returned\":20},\"series\":{\"available\":104,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/725\",\"name\":\"4
         
     | 
| 
      
 51 
     | 
    
         
            +
                    (2004 - 2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1423\",\"name\":\"4
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Vol. 3: Divine Time (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9994\",\"name\":\"ACTS
         
     | 
| 
      
 53 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9995\",\"name\":\"ACTS
         
     | 
| 
      
 54 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 57 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 58 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10035\",\"name\":\"Avengers
         
     | 
| 
      
 59 
     | 
    
         
            +
                    & the Infinity Gauntlet (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9859\",\"name\":\"Avengers
         
     | 
| 
      
 60 
     | 
    
         
            +
                    & the Infinity Gauntlet (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6476\",\"name\":\"Avengers:
         
     | 
| 
      
 61 
     | 
    
         
            +
                    First to Last (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6473\",\"name\":\"Avengers:
         
     | 
| 
      
 62 
     | 
    
         
            +
                    First to Last Premiere (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10056\",\"name\":\"Avengers:
         
     | 
| 
      
 63 
     | 
    
         
            +
                    The Children's Crusade (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9864\",\"name\":\"Avengers:
         
     | 
| 
      
 64 
     | 
    
         
            +
                    The Childrens Crusade (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6804\",\"name\":\"Black
         
     | 
| 
      
 65 
     | 
    
         
            +
                    Panther (2008 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9120\",\"name\":\"Black
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Widow & the Marvel Girls (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1123\",\"name\":\"Blade
         
     | 
| 
      
 67 
     | 
    
         
            +
                    (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2236\",\"name\":\"Blade:
         
     | 
| 
      
 68 
     | 
    
         
            +
                    Undead Again (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8213\",\"name\":\"Captain
         
     | 
| 
      
 69 
     | 
    
         
            +
                    America: Reborn (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1721\",\"name\":\"Champions
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Classic Vol. 2 (2007)\"}],\"returned\":20},\"stories\":{\"available\":183,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/3071\",\"name\":\"3
         
     | 
| 
      
 71 
     | 
    
         
            +
                    of 4 - Divine Time\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5132\",\"name\":\"3
         
     | 
| 
      
 72 
     | 
    
         
            +
                    of 3 - 3XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5496\",\"name\":\"1
         
     | 
| 
      
 73 
     | 
    
         
            +
                    of 6 -\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6174\",\"name\":\"1
         
     | 
| 
      
 74 
     | 
    
         
            +
                    of 1 - Dr. Doom and Latveria\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7874\",\"name\":\"3
         
     | 
| 
      
 75 
     | 
    
         
            +
                    of 3 - Story C\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8325\",\"name\":\"3
         
     | 
| 
      
 76 
     | 
    
         
            +
                    of 3 - Story C\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12402\",\"name\":\"The
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Return of Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12403\",\"name\":\"Part
         
     | 
| 
      
 78 
     | 
    
         
            +
                    2 \\\"Back from the Dead!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12404\",\"name\":\"Part
         
     | 
| 
      
 79 
     | 
    
         
            +
                    3 \\\"The End of Mr. Fantastic?\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12405\",\"name\":\"Part
         
     | 
| 
      
 80 
     | 
    
         
            +
                    4 \\\"No Place to Turn!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12406\",\"name\":\"Part
         
     | 
| 
      
 81 
     | 
    
         
            +
                    5 \\\"The Real Doctor Doom!\\\"\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12563\",\"name\":\"Defeated
         
     | 
| 
      
 82 
     | 
    
         
            +
                    by Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12755\",\"name\":\"Cover
         
     | 
| 
      
 83 
     | 
    
         
            +
                    #12755\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12757\",\"name\":\"Cover
         
     | 
| 
      
 84 
     | 
    
         
            +
                    #12757\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12782\",\"name\":\"Cover
         
     | 
| 
      
 85 
     | 
    
         
            +
                    #12782\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12783\",\"name\":\"Interlude\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12784\",\"name\":\"Three
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Against Doomsday!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12785\",\"name\":\"Choices\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12789\",\"name\":\"When
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Titans Clash\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12828\",\"name\":\"Cover
         
     | 
| 
      
 88 
     | 
    
         
            +
                    #12828\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":9,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009281/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 89 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 92 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 93 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Wars II\"}],\"returned\":9},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009281/doctor_doom?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Doctor_Doom_%28Victor_von_Doom%29?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 97 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 98 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 99 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,644 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 12 
     | 
    
         
            +
              response:
         
     | 
| 
      
 13 
     | 
    
         
            +
                status:
         
     | 
| 
      
 14 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - 71beef1989334b9f8c374cf0a75765c5ec1c2436
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '78811'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Sun, 09 Feb 2014 20:11:47 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"71beef1989334b9f8c374cf0a75765c5ec1c2436\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1402,\"count\":20,\"results\":[{\"id\":1009521,\"name\":\"
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Hank Pym\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/c0/4ce5a0e31f109\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009521\",\"comics\":{\"available\":44,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35533\",\"name\":\"Amazing
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Spider-Man (1999) #661\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39041\",\"name\":\"Amazing
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Spider-Man (1999) #661 (X-Men Art Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35534\",\"name\":\"Amazing
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Spider-Man (1999) #662\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7336\",\"name\":\"Avengers
         
     | 
| 
      
 34 
     | 
    
         
            +
                    (1963) #83\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7353\",\"name\":\"Avengers
         
     | 
| 
      
 35 
     | 
    
         
            +
                    (1963) #99\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6995\",\"name\":\"Avengers
         
     | 
| 
      
 36 
     | 
    
         
            +
                    (1963) #138\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7004\",\"name\":\"Avengers
         
     | 
| 
      
 37 
     | 
    
         
            +
                    (1963) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7015\",\"name\":\"Avengers
         
     | 
| 
      
 38 
     | 
    
         
            +
                    (1963) #156\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29213\",\"name\":\"Avengers
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Academy (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36770\",\"name\":\"Avengers
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Academy (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34490\",\"name\":\"Avengers
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Academy (2010) #1 (DJURDJEVIC VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29217\",\"name\":\"Avengers
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Academy (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36482\",\"name\":\"Avengers
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Academy (2010) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36479\",\"name\":\"Avengers
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Academy (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36489\",\"name\":\"Avengers
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Academy (2010) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29324\",\"name\":\"Avengers
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Academy Vol 1 : Permanent Record TPB (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6040\",\"name\":\"Beyond!
         
     | 
| 
      
 47 
     | 
    
         
            +
                    (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4447\",\"name\":\"Beyond!
         
     | 
| 
      
 48 
     | 
    
         
            +
                    (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30015\",\"name\":\"Incredible
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Hulks (2009) #607 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13477\",\"name\":\"Mighty
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Avengers (2007) #3\"}],\"returned\":20},\"series\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 51 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 52 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Academy (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10037\",\"name\":\"Avengers
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Academy Vol 1 : Permanent Record TPB (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/997\",\"name\":\"Beyond!
         
     | 
| 
      
 55 
     | 
    
         
            +
                    (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1928\",\"name\":\"Beyond!
         
     | 
| 
      
 56 
     | 
    
         
            +
                    (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 57 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1866\",\"name\":\"Mighty
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Avengers (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5381\",\"name\":\"Mighty
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Avengers Vol. 1: The Ultron Initiative (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12877\",\"name\":\"The
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Iron Age (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2715\",\"name\":\"Women
         
     | 
| 
      
 61 
     | 
    
         
            +
                    of Marvel Vol. 2 (2007)\"}],\"returned\":11},\"stories\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5621\",\"name\":\"1
         
     | 
| 
      
 62 
     | 
    
         
            +
                    of 6 - 6XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8682\",\"name\":\"3
         
     | 
| 
      
 63 
     | 
    
         
            +
                    of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14528\",\"name\":\"Stranger
         
     | 
| 
      
 64 
     | 
    
         
            +
                    in a Strange Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14546\",\"name\":\"The
         
     | 
| 
      
 65 
     | 
    
         
            +
                    Assassin Never Fails!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14568\",\"name\":\"The
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Private War of Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15235\",\"name\":\"Come
         
     | 
| 
      
 67 
     | 
    
         
            +
                    On In, The Revolution's Fine\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15269\",\"name\":\"They
         
     | 
| 
      
 68 
     | 
    
         
            +
                    First Make Mad\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32378\",\"name\":\"4
         
     | 
| 
      
 69 
     | 
    
         
            +
                    of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36886\",\"name\":\"Venom
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Bomb 2 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44681\",\"name\":\"Venom
         
     | 
| 
      
 71 
     | 
    
         
            +
                    Bomb 5 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47781\",\"name\":\"Secret
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Invasion 6 of 8\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52267\",\"name\":\"2
         
     | 
| 
      
 73 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52726\",\"name\":\"3
         
     | 
| 
      
 74 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53148\",\"name\":\"1
         
     | 
| 
      
 75 
     | 
    
         
            +
                    of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53543\",\"name\":\"1
         
     | 
| 
      
 76 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57228\",\"name\":\"Interior
         
     | 
| 
      
 77 
     | 
    
         
            +
                    #57228\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57230\",\"name\":\"Interior
         
     | 
| 
      
 78 
     | 
    
         
            +
                    #57230\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57232\",\"name\":\"Interior
         
     | 
| 
      
 79 
     | 
    
         
            +
                    #57232\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57234\",\"name\":\"Interior
         
     | 
| 
      
 80 
     | 
    
         
            +
                    #57234\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57236\",\"name\":\"Interior
         
     | 
| 
      
 81 
     | 
    
         
            +
                    #57236\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 82 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 83 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Heroes\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":6},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009521/_hank_pym?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011334,\"name\":\"3-D
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Man\",\"description\":\"\",\"modified\":\"2010-11-30T15:16:53-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/4c002e4aa7e27\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011334\",\"comics\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21366\",\"name\":\"Avengers:
         
     | 
| 
      
 87 
     | 
    
         
            +
                    The Initiative (2007) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24571\",\"name\":\"Avengers:
         
     | 
| 
      
 88 
     | 
    
         
            +
                    The Initiative (2007) #14 (SPOTLIGHT VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21546\",\"name\":\"Avengers:
         
     | 
| 
      
 89 
     | 
    
         
            +
                    The Initiative (2007) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21741\",\"name\":\"Avengers:
         
     | 
| 
      
 90 
     | 
    
         
            +
                    The Initiative (2007) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21975\",\"name\":\"Avengers:
         
     | 
| 
      
 91 
     | 
    
         
            +
                    The Initiative (2007) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22299\",\"name\":\"Avengers:
         
     | 
| 
      
 92 
     | 
    
         
            +
                    The Initiative (2007) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22300\",\"name\":\"Avengers:
         
     | 
| 
      
 93 
     | 
    
         
            +
                    The Initiative (2007) #18 (ZOMBIE VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22506\",\"name\":\"Avengers:
         
     | 
| 
      
 94 
     | 
    
         
            +
                    The Initiative (2007) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10223\",\"name\":\"Marvel
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Premiere (1972) #35\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10224\",\"name\":\"Marvel
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Premiere (1972) #36\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10225\",\"name\":\"Marvel
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Premiere (1972) #37\"}],\"returned\":11},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1945\",\"name\":\"Avengers:
         
     | 
| 
      
 98 
     | 
    
         
            +
                    The Initiative (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 99 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":2},\"stories\":{\"available\":17,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19947\",\"name\":\"Cover
         
     | 
| 
      
 100 
     | 
    
         
            +
                    #19947\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19948\",\"name\":\"The
         
     | 
| 
      
 101 
     | 
    
         
            +
                    3-D Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19949\",\"name\":\"Cover
         
     | 
| 
      
 102 
     | 
    
         
            +
                    #19949\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19950\",\"name\":\"The
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Devil's Music!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19951\",\"name\":\"Cover
         
     | 
| 
      
 104 
     | 
    
         
            +
                    #19951\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19952\",\"name\":\"Code-Name:
         
     | 
| 
      
 105 
     | 
    
         
            +
                    \ The Cold Warrior!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47185\",\"name\":\"Avengers:
         
     | 
| 
      
 106 
     | 
    
         
            +
                    The Initiative (2007) #14 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47499\",\"name\":\"Avengers:
         
     | 
| 
      
 107 
     | 
    
         
            +
                    The Initiative (2007) #15 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47792\",\"name\":\"Avengers:
         
     | 
| 
      
 108 
     | 
    
         
            +
                    The Initiative (2007) #16\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47793\",\"name\":\"Avengers:
         
     | 
| 
      
 109 
     | 
    
         
            +
                    The Initiative (2007) #16 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/48362\",\"name\":\"Avengers:
         
     | 
| 
      
 110 
     | 
    
         
            +
                    The Initiative (2007) #17 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49104\",\"name\":\"Avengers:
         
     | 
| 
      
 111 
     | 
    
         
            +
                    The Initiative (2007) #18 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49106\",\"name\":\"Avengers:
         
     | 
| 
      
 112 
     | 
    
         
            +
                    The Initiative (2007) #18, Zombie Variant - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49888\",\"name\":\"Avengers:
         
     | 
| 
      
 113 
     | 
    
         
            +
                    The Initiative (2007) #19\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49889\",\"name\":\"Avengers:
         
     | 
| 
      
 114 
     | 
    
         
            +
                    The Initiative (2007) #19 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/54371\",\"name\":\"Avengers:
         
     | 
| 
      
 115 
     | 
    
         
            +
                    The Initiative (2007) #14, Spotlight Variant - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/96303\",\"name\":\"Deadpool
         
     | 
| 
      
 116 
     | 
    
         
            +
                    (1997) #44\",\"type\":\"interiorStory\"}],\"returned\":17},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Invasion\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011334/3-d_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/3-D_Man_(Chandler)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1017100,\"name\":\"A-Bomb
         
     | 
| 
      
 118 
     | 
    
         
            +
                    (HAS)\",\"description\":\"Rick Jones has been Hulk's best bud since day one,
         
     | 
| 
      
 119 
     | 
    
         
            +
                    but now he's more than a friend...he's a teammate! Transformed by a Gamma
         
     | 
| 
      
 120 
     | 
    
         
            +
                    energy explosion, A-Bomb's thick, armored skin is just as strong and powerful
         
     | 
| 
      
 121 
     | 
    
         
            +
                    as it is blue. And when he curls into action, he uses it like a giant bowling
         
     | 
| 
      
 122 
     | 
    
         
            +
                    ball of destruction! \",\"modified\":\"2013-09-18T15:54:04-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/3/20/5232158de5b16\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1017100\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1017100/a-bomb_has?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009144,\"name\":\"A.I.M.\",\"description\":\"AIM
         
     | 
| 
      
 123 
     | 
    
         
            +
                    is a terrorist organization bent on destroying the world.\",\"modified\":\"2013-10-17T14:41:30-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/20/52602f21f29ec\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"comics\":{\"available\":36,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36763\",\"name\":\"Ant-Man
         
     | 
| 
      
 124 
     | 
    
         
            +
                    & the Wasp (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17553\",\"name\":\"Avengers
         
     | 
| 
      
 125 
     | 
    
         
            +
                    (1998) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7340\",\"name\":\"Avengers
         
     | 
| 
      
 126 
     | 
    
         
            +
                    (1963) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1170\",\"name\":\"Avengers
         
     | 
| 
      
 127 
     | 
    
         
            +
                    Vol. 2: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1214\",\"name\":\"Avengers
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Vol. II: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12787\",\"name\":\"Captain
         
     | 
| 
      
 129 
     | 
    
         
            +
                    America (1998) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20367\",\"name\":\"Defenders
         
     | 
| 
      
 130 
     | 
    
         
            +
                    (1972) #57\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31068\",\"name\":\"Incredible
         
     | 
| 
      
 131 
     | 
    
         
            +
                    Hulks (2009) #606 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36737\",\"name\":\"Marvel
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Adventures Super Heroes (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2110\",\"name\":\"Marvel
         
     | 
| 
      
 133 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1130\",\"name\":\"Marvel
         
     | 
| 
      
 134 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2319\",\"name\":\"Marvel
         
     | 
| 
      
 135 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2820\",\"name\":\"Marvel
         
     | 
| 
      
 136 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2001\",\"name\":\"Marvel
         
     | 
| 
      
 137 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17468\",\"name\":\"Marvel
         
     | 
| 
      
 138 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1164\",\"name\":\"Marvel
         
     | 
| 
      
 139 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11068\",\"name\":\"Strange
         
     | 
| 
      
 140 
     | 
    
         
            +
                    Tales (1951) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11069\",\"name\":\"Strange
         
     | 
| 
      
 141 
     | 
    
         
            +
                    Tales (1951) #147\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11070\",\"name\":\"Strange
         
     | 
| 
      
 142 
     | 
    
         
            +
                    Tales (1951) #148\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11324\",\"name\":\"Tales
         
     | 
| 
      
 143 
     | 
    
         
            +
                    of Suspense (1959) #79\"}],\"returned\":20},\"series\":{\"available\":23,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13082\",\"name\":\"Ant-Man
         
     | 
| 
      
 144 
     | 
    
         
            +
                    & the Wasp (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 145 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 146 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/227\",\"name\":\"Avengers
         
     | 
| 
      
 147 
     | 
    
         
            +
                    Vol. 2: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/271\",\"name\":\"Avengers
         
     | 
| 
      
 148 
     | 
    
         
            +
                    Vol. II: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
         
     | 
| 
      
 149 
     | 
    
         
            +
                    America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3743\",\"name\":\"Defenders
         
     | 
| 
      
 150 
     | 
    
         
            +
                    (1972 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 151 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9718\",\"name\":\"Marvel
         
     | 
| 
      
 152 
     | 
    
         
            +
                    Adventures Super Heroes (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1506\",\"name\":\"Marvel
         
     | 
| 
      
 153 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/189\",\"name\":\"Marvel
         
     | 
| 
      
 154 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1468\",\"name\":\"Marvel
         
     | 
| 
      
 155 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1494\",\"name\":\"Marvel
         
     | 
| 
      
 156 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3300\",\"name\":\"Marvel
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (0000 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/222\",\"name\":\"Marvel
         
     | 
| 
      
 158 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2076\",\"name\":\"Strange
         
     | 
| 
      
 159 
     | 
    
         
            +
                    Tales (1951 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2079\",\"name\":\"Tales
         
     | 
| 
      
 160 
     | 
    
         
            +
                    of Suspense (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2725\",\"name\":\"Tales
         
     | 
| 
      
 161 
     | 
    
         
            +
                    of Suspsnse Transport (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13213\",\"name\":\"Taskmaster
         
     | 
| 
      
 162 
     | 
    
         
            +
                    (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
         
     | 
| 
      
 163 
     | 
    
         
            +
                    X-Men (1963 - 2011)\"}],\"returned\":20},\"stories\":{\"available\":28,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10253\",\"name\":\"When
         
     | 
| 
      
 164 
     | 
    
         
            +
                    the Unliving Strike\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10255\",\"name\":\"Cover
         
     | 
| 
      
 165 
     | 
    
         
            +
                    #10255\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10256\",\"name\":\"The
         
     | 
| 
      
 166 
     | 
    
         
            +
                    Enemy Within!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10259\",\"name\":\"Death
         
     | 
| 
      
 167 
     | 
    
         
            +
                    Before Dishonor!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10261\",\"name\":\"Cover
         
     | 
| 
      
 168 
     | 
    
         
            +
                    #10261\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10262\",\"name\":\"The
         
     | 
| 
      
 169 
     | 
    
         
            +
                    End of A.I.M.!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11921\",\"name\":\"The
         
     | 
| 
      
 170 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11930\",\"name\":\"He
         
     | 
| 
      
 171 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11936\",\"name\":\"The
         
     | 
| 
      
 172 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11981\",\"name\":\"If
         
     | 
| 
      
 173 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11984\",\"name\":\"A
         
     | 
| 
      
 174 
     | 
    
         
            +
                    Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11995\",\"name\":\"At
         
     | 
| 
      
 175 
     | 
    
         
            +
                    the Mercy of the Maggia\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15243\",\"name\":\"Look
         
     | 
| 
      
 176 
     | 
    
         
            +
                    Homeward, Avenger\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28233\",\"name\":\"In
         
     | 
| 
      
 177 
     | 
    
         
            +
                    Sin Airy X\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28971\",\"name\":\"[The
         
     | 
| 
      
 178 
     | 
    
         
            +
                    Brothers Part I]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34426\",\"name\":\"The
         
     | 
| 
      
 179 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34435\",\"name\":\"He
         
     | 
| 
      
 180 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34441\",\"name\":\"The
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34486\",\"name\":\"If
         
     | 
| 
      
 182 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34489\",\"name\":\"A
         
     | 
| 
      
 183 
     | 
    
         
            +
                    Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009144/aim.?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/A.I.M.?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009146,\"name\":\"Abomination
         
     | 
| 
      
 184 
     | 
    
         
            +
                    (Emil Blonsky)\",\"description\":\"Formerly known as Emil Blonsky, a spy of
         
     | 
| 
      
 185 
     | 
    
         
            +
                    Soviet Yugoslavian origin working for the KGB, the Abomination gained his
         
     | 
| 
      
 186 
     | 
    
         
            +
                    powers after receiving a dose of gamma radiation similar to that which transformed
         
     | 
| 
      
 187 
     | 
    
         
            +
                    Bruce Banner into the incredible Hulk.\",\"modified\":\"2012-03-20T12:32:12-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4ce18691cbf04\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009146\",\"comics\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17547\",\"name\":\"Avengers
         
     | 
| 
      
 188 
     | 
    
         
            +
                    (1998) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17548\",\"name\":\"Avengers
         
     | 
| 
      
 189 
     | 
    
         
            +
                    (1998) #62\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1098\",\"name\":\"Avengers
         
     | 
| 
      
 190 
     | 
    
         
            +
                    Vol. 1: World Trust (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8557\",\"name\":\"Earth
         
     | 
| 
      
 191 
     | 
    
         
            +
                    X (1999) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4241\",\"name\":\"Earth
         
     | 
| 
      
 192 
     | 
    
         
            +
                    X (New (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20863\",\"name\":\"Hulk
         
     | 
| 
      
 193 
     | 
    
         
            +
                    (2008) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23677\",\"name\":\"Hulk
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Vol. 1: Red Hulk (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2499\",\"name\":\"Hulk:
         
     | 
| 
      
 195 
     | 
    
         
            +
                    Destruction (2005) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14425\",\"name\":\"Incredible
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Hulk (1999) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14428\",\"name\":\"Incredible
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Hulk (1999) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14450\",\"name\":\"Incredible
         
     | 
| 
      
 198 
     | 
    
         
            +
                    Hulk (1999) #50\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14451\",\"name\":\"Incredible
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Hulk (1999) #51\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8948\",\"name\":\"Incredible
         
     | 
| 
      
 200 
     | 
    
         
            +
                    Hulk (1962) #137\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9006\",\"name\":\"Incredible
         
     | 
| 
      
 201 
     | 
    
         
            +
                    Hulk (1962) #195\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9007\",\"name\":\"Incredible
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Hulk (1962) #196\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9125\",\"name\":\"Incredible
         
     | 
| 
      
 203 
     | 
    
         
            +
                    Hulk (1962) #314\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9193\",\"name\":\"Incredible
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Hulk (1962) #382\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9194\",\"name\":\"Incredible
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Hulk (1962) #383\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9195\",\"name\":\"Incredible
         
     | 
| 
      
 206 
     | 
    
         
            +
                    Hulk (1962) #384\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9243\",\"name\":\"Incredible
         
     | 
| 
      
 207 
     | 
    
         
            +
                    Hulk (1962) #432\"}],\"returned\":20},\"series\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 208 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/158\",\"name\":\"Avengers
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Vol. 1: World Trust (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/378\",\"name\":\"Earth
         
     | 
| 
      
 210 
     | 
    
         
            +
                    X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1806\",\"name\":\"Earth
         
     | 
| 
      
 211 
     | 
    
         
            +
                    X (New (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3374\",\"name\":\"Hulk
         
     | 
| 
      
 212 
     | 
    
         
            +
                    (2008 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6831\",\"name\":\"Hulk
         
     | 
| 
      
 213 
     | 
    
         
            +
                    Vol. 1: Red Hulk (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/924\",\"name\":\"Hulk:
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Destruction (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/465\",\"name\":\"Incredible
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Hulk (1999 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2983\",\"name\":\"Incredible
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Hulk Annual (1976 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/212\",\"name\":\"Incredible
         
     | 
| 
      
 218 
     | 
    
         
            +
                    Hulk Vol. 4: Abominable (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/244\",\"name\":\"Incredible
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Hulk Vol. IV: Abominable (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2572\",\"name\":\"Iron
         
     | 
| 
      
 221 
     | 
    
         
            +
                    Man (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/977\",\"name\":\"Irredeemable
         
     | 
| 
      
 222 
     | 
    
         
            +
                    Ant-Man (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2423\",\"name\":\"Irredeemable
         
     | 
| 
      
 223 
     | 
    
         
            +
                    Ant-Man Vol. 1: Low-Life (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3722\",\"name\":\"Killraven
         
     | 
| 
      
 224 
     | 
    
         
            +
                    (2002 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2437\",\"name\":\"Killraven
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Premiere (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1671\",\"name\":\"Marvel
         
     | 
| 
      
 226 
     | 
    
         
            +
                    Masterworks: The Incredible Hulk Vol.3 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
         
     | 
| 
      
 227 
     | 
    
         
            +
                    Super-Heroes (1992 - 1993)\"}],\"returned\":20},\"stories\":{\"available\":39,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4946\",\"name\":\"4
         
     | 
| 
      
 228 
     | 
    
         
            +
                    of 4 - 4XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5496\",\"name\":\"1
         
     | 
| 
      
 229 
     | 
    
         
            +
                    of 6 -\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12370\",\"name\":\"Cover
         
     | 
| 
      
 230 
     | 
    
         
            +
                    #12370\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12372\",\"name\":\"Whosoever
         
     | 
| 
      
 231 
     | 
    
         
            +
                    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
         
     | 
| 
      
 232 
     | 
    
         
            +
                    Stars Mine Enemy\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18537\",\"name\":\"Warfare
         
     | 
| 
      
 233 
     | 
    
         
            +
                    In Wonderland!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18539\",\"name\":\"The
         
     | 
| 
      
 234 
     | 
    
         
            +
                    Abomination Proclamation!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18776\",\"name\":\"Cover
         
     | 
| 
      
 235 
     | 
    
         
            +
                    #18776\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18914\",\"name\":\"Moving
         
     | 
| 
      
 236 
     | 
    
         
            +
                    On\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18916\",\"name\":\"Green
         
     | 
| 
      
 237 
     | 
    
         
            +
                    Canard\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18918\",\"name\":\"Small
         
     | 
| 
      
 238 
     | 
    
         
            +
                    Talk\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19024\",\"name\":\"Shades
         
     | 
| 
      
 239 
     | 
    
         
            +
                    of Green\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19081\",\"name\":\"Who
         
     | 
| 
      
 240 
     | 
    
         
            +
                    Shall Fear The Green Goliath?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19082\",\"name\":\"Last
         
     | 
| 
      
 241 
     | 
    
         
            +
                    Legs\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19119\",\"name\":\"The
         
     | 
| 
      
 242 
     | 
    
         
            +
                    Great Astonishment - Chapter One: Auld Lang Syne\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19122\",\"name\":\"The
         
     | 
| 
      
 243 
     | 
    
         
            +
                    Great Astonishment - Chapter Two: The Edge of Universal Pain\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19124\",\"name\":\"The
         
     | 
| 
      
 244 
     | 
    
         
            +
                    Strangest Story Of All Time!!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19125\",\"name\":\"The
         
     | 
| 
      
 245 
     | 
    
         
            +
                    Great Astonishment - Conclusion: It's All True!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/24932\",\"name\":\"Earth
         
     | 
| 
      
 246 
     | 
    
         
            +
                    X Chapter Seven\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 247 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 248 
     | 
    
         
            +
                    Gauntlet\"}],\"returned\":2},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009146/abomination_emil_blonsky?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Abomination?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1016823,\"name\":\"Abomination
         
     | 
| 
      
 249 
     | 
    
         
            +
                    (Ultimate)\",\"description\":\"\",\"modified\":\"2012-07-10T19:11:52-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1016823\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15717\",\"name\":\"Ultimate
         
     | 
| 
      
 250 
     | 
    
         
            +
                    X-Men (2000) #26\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1151\",\"name\":\"Ultimate
         
     | 
| 
      
 251 
     | 
    
         
            +
                    X-Men Vol. 6: Return of the King (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1186\",\"name\":\"Ultimate
         
     | 
| 
      
 252 
     | 
    
         
            +
                    X-Men Vol. VI: Return of the King (Trade Paperback)\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/474\",\"name\":\"Ultimate
         
     | 
| 
      
 253 
     | 
    
         
            +
                    X-Men (2000 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/210\",\"name\":\"Ultimate
         
     | 
| 
      
 254 
     | 
    
         
            +
                    X-Men Vol. 6: Return of the King (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/243\",\"name\":\"Ultimate
         
     | 
| 
      
 255 
     | 
    
         
            +
                    X-Men Vol. VI: Return of the King (2003)\"}],\"returned\":3},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31883\",\"name\":\"Free
         
     | 
| 
      
 256 
     | 
    
         
            +
                    Preview of THE INCREDIBLE HULK #50\",\"type\":\"interiorStory\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1016823/abomination_ultimate?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009148,\"name\":\"Absorbing
         
     | 
| 
      
 257 
     | 
    
         
            +
                    Man\",\"description\":\"\",\"modified\":\"2013-10-24T14:32:08-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/1/b0/5269678709fb7\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009148\",\"comics\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36481\",\"name\":\"Avengers
         
     | 
| 
      
 258 
     | 
    
         
            +
                    Academy (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36480\",\"name\":\"Avengers
         
     | 
| 
      
 259 
     | 
    
         
            +
                    Academy (2010) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36479\",\"name\":\"Avengers
         
     | 
| 
      
 260 
     | 
    
         
            +
                    Academy (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36484\",\"name\":\"Avengers
         
     | 
| 
      
 261 
     | 
    
         
            +
                    Academy (2010) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36489\",\"name\":\"Avengers
         
     | 
| 
      
 262 
     | 
    
         
            +
                    Academy (2010) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6935\",\"name\":\"Avengers
         
     | 
| 
      
 263 
     | 
    
         
            +
                    Annual (1967) #20\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12783\",\"name\":\"Captain
         
     | 
| 
      
 264 
     | 
    
         
            +
                    America (1998) #24\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20427\",\"name\":\"Dazzler
         
     | 
| 
      
 265 
     | 
    
         
            +
                    (1981) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20428\",\"name\":\"Dazzler
         
     | 
| 
      
 266 
     | 
    
         
            +
                    (1981) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41433\",\"name\":\"Fear
         
     | 
| 
      
 267 
     | 
    
         
            +
                    Itself (2010) #2 (3rd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38452\",\"name\":\"Fear
         
     | 
| 
      
 268 
     | 
    
         
            +
                    Itself: Fellowship of Fear (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39848\",\"name\":\"Fear
         
     | 
| 
      
 269 
     | 
    
         
            +
                    Itself: The Worthy (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40977\",\"name\":\"Fear
         
     | 
| 
      
 270 
     | 
    
         
            +
                    Itself: The Worthy (2011) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9072\",\"name\":\"Incredible
         
     | 
| 
      
 271 
     | 
    
         
            +
                    Hulk (1962) #261\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29794\",\"name\":\"Iron
         
     | 
| 
      
 272 
     | 
    
         
            +
                    Man 2.0 (2011) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29795\",\"name\":\"Iron
         
     | 
| 
      
 273 
     | 
    
         
            +
                    Man 2.0 (2011) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9698\",\"name\":\"Journey
         
     | 
| 
      
 274 
     | 
    
         
            +
                    Into Mystery (1952) #122\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5234\",\"name\":\"Marvel
         
     | 
| 
      
 275 
     | 
    
         
            +
                    Adventures Fantastic Four (2005) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6277\",\"name\":\"Marvel
         
     | 
| 
      
 276 
     | 
    
         
            +
                    Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (Digest)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39537\",\"name\":\"Marvel
         
     | 
| 
      
 277 
     | 
    
         
            +
                    Masterworks: The Mighty Thor Vol. 3 (Trade Paperback)\"}],\"returned\":20},\"series\":{\"available\":28,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 278 
     | 
    
         
            +
                    Academy (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1988\",\"name\":\"Avengers
         
     | 
| 
      
 279 
     | 
    
         
            +
                    Annual (1967 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
         
     | 
| 
      
 280 
     | 
    
         
            +
                    America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3745\",\"name\":\"Dazzler
         
     | 
| 
      
 281 
     | 
    
         
            +
                    (1981 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13691\",\"name\":\"Fear
         
     | 
| 
      
 282 
     | 
    
         
            +
                    Itself (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13857\",\"name\":\"Fear
         
     | 
| 
      
 283 
     | 
    
         
            +
                    Itself: Fellowship of Fear (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13827\",\"name\":\"Fear
         
     | 
| 
      
 284 
     | 
    
         
            +
                    Itself: The Worthy (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
         
     | 
| 
      
 285 
     | 
    
         
            +
                    Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9924\",\"name\":\"Iron
         
     | 
| 
      
 286 
     | 
    
         
            +
                    Man 2.0 (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2032\",\"name\":\"Journey
         
     | 
| 
      
 287 
     | 
    
         
            +
                    Into Mystery (1952 - 1966)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/926\",\"name\":\"Marvel
         
     | 
| 
      
 288 
     | 
    
         
            +
                    Adventures Fantastic Four (2005 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1959\",\"name\":\"Marvel
         
     | 
| 
      
 289 
     | 
    
         
            +
                    Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14492\",\"name\":\"Marvel
         
     | 
| 
      
 290 
     | 
    
         
            +
                    Masterworks: The Mighty Thor Vol. 3 (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14491\",\"name\":\"Marvel
         
     | 
| 
      
 291 
     | 
    
         
            +
                    Masterworks: The Mighty Thor Vol. 3 Variant (DM Only) (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1588\",\"name\":\"Marvel
         
     | 
| 
      
 292 
     | 
    
         
            +
                    Masterworks: The Mighty Thor Vol. 4 (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
         
     | 
| 
      
 293 
     | 
    
         
            +
                    Super-Heroes (1992 - 1993)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1866\",\"name\":\"Mighty
         
     | 
| 
      
 294 
     | 
    
         
            +
                    Avengers (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2059\",\"name\":\"Paradise
         
     | 
| 
      
 295 
     | 
    
         
            +
                    X (2002 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2431\",\"name\":\"Paradise
         
     | 
| 
      
 296 
     | 
    
         
            +
                    X Vol. 1 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6796\",\"name\":\"Secret
         
     | 
| 
      
 297 
     | 
    
         
            +
                    Warriors (2008 - 2011)\"}],\"returned\":20},\"stories\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4988\",\"name\":\"1
         
     | 
| 
      
 298 
     | 
    
         
            +
                    of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11028\",\"name\":\"Journey
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Into Mystery (1952) #122\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16688\",\"name\":\"Thor
         
     | 
| 
      
 300 
     | 
    
         
            +
                    (1966) #206\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16691\",\"name\":\"Thor
         
     | 
| 
      
 301 
     | 
    
         
            +
                    (1966) #207\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17049\",\"name\":\"Thor
         
     | 
| 
      
 302 
     | 
    
         
            +
                    (1966) #375\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17050\",\"name\":\"Shadows
         
     | 
| 
      
 303 
     | 
    
         
            +
                    of the Past\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17051\",\"name\":\"Heroes
         
     | 
| 
      
 304 
     | 
    
         
            +
                    Always Win...Don't They?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17342\",\"name\":\"Cover
         
     | 
| 
      
 305 
     | 
    
         
            +
                    #17342\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17412\",\"name\":\"A
         
     | 
| 
      
 306 
     | 
    
         
            +
                    Wing and a Prayer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18670\",\"name\":\"Encounter
         
     | 
| 
      
 307 
     | 
    
         
            +
                    On Easter Island!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21604\",\"name\":\"Secret
         
     | 
| 
      
 308 
     | 
    
         
            +
                    Wars (1984) #6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21606\",\"name\":\"Secret
         
     | 
| 
      
 309 
     | 
    
         
            +
                    Wars (1984) #7\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/26016\",\"name\":\"Paradise
         
     | 
| 
      
 310 
     | 
    
         
            +
                    X Issue 0\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/26025\",\"name\":\"Cover
         
     | 
| 
      
 311 
     | 
    
         
            +
                    #26025\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28708\",\"name\":\"The
         
     | 
| 
      
 312 
     | 
    
         
            +
                    Hunted Part 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31596\",\"name\":\"\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31597\",\"name\":\"Downtown
         
     | 
| 
      
 313 
     | 
    
         
            +
                    Demolition\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37745\",\"name\":\"A
         
     | 
| 
      
 314 
     | 
    
         
            +
                    Wing and a Prayer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/39926\",\"name\":\"And
         
     | 
| 
      
 315 
     | 
    
         
            +
                    the Absorbing Man Makes Three!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/39927\",\"name\":\"Hammer
         
     | 
| 
      
 316 
     | 
    
         
            +
                    Time!\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 317 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 318 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
         
     | 
| 
      
 319 
     | 
    
         
            +
                    Heroes\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":4},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009148/absorbing_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Absorbing_Man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009149,\"name\":\"Abyss\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/e/e0/4c004214c1502\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009149\",\"comics\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009149/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13943\",\"name\":\"Uncanny
         
     | 
| 
      
 320 
     | 
    
         
            +
                    X-Men (1963) #402\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13945\",\"name\":\"Uncanny
         
     | 
| 
      
 321 
     | 
    
         
            +
                    X-Men (1963) #404\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13946\",\"name\":\"Uncanny
         
     | 
| 
      
 322 
     | 
    
         
            +
                    X-Men (1963) #405\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13947\",\"name\":\"Uncanny
         
     | 
| 
      
 323 
     | 
    
         
            +
                    X-Men (1963) #406\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13970\",\"name\":\"Uncanny
         
     | 
| 
      
 324 
     | 
    
         
            +
                    X-Men (1963) #429\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13972\",\"name\":\"Uncanny
         
     | 
| 
      
 325 
     | 
    
         
            +
                    X-Men (1963) #431\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12386\",\"name\":\"X-Men:
         
     | 
| 
      
 326 
     | 
    
         
            +
                    Alpha (1994) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2539\",\"name\":\"X-Men:
         
     | 
| 
      
 327 
     | 
    
         
            +
                    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
         
     | 
| 
      
 328 
     | 
    
         
            +
                    X-Men (1963 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2104\",\"name\":\"X-Men:
         
     | 
| 
      
 329 
     | 
    
         
            +
                    Alpha (1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1583\",\"name\":\"X-Men:
         
     | 
| 
      
 330 
     | 
    
         
            +
                    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
         
     | 
| 
      
 331 
     | 
    
         
            +
                    Beginning\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28352\",\"name\":\"Utility
         
     | 
| 
      
 332 
     | 
    
         
            +
                    of Myth\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28356\",\"name\":\"Army
         
     | 
| 
      
 333 
     | 
    
         
            +
                    Ants\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28358\",\"name\":\"Ballroom
         
     | 
| 
      
 334 
     | 
    
         
            +
                    Blitzkrieg\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28360\",\"name\":\"Staring
         
     | 
| 
      
 335 
     | 
    
         
            +
                    Contests are for Suckers\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28407\",\"name\":\"The
         
     | 
| 
      
 336 
     | 
    
         
            +
                    Draco Part One: Sins of the Father\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28411\",\"name\":\"The
         
     | 
| 
      
 337 
     | 
    
         
            +
                    Draco Part Three\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28413\",\"name\":\"The
         
     | 
| 
      
 338 
     | 
    
         
            +
                    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
         
     | 
| 
      
 339 
     | 
    
         
            +
                    of Apocalypse\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009149/abyss?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Abyss_(alien)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011266,\"name\":\"Adam
         
     | 
| 
      
 340 
     | 
    
         
            +
                    Destine\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011266\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011266/adam_destine?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Destine,_Adam?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010354,\"name\":\"Adam
         
     | 
| 
      
 341 
     | 
    
         
            +
                    Warlock\",\"description\":\"Adam Warlock is an artificially created human
         
     | 
| 
      
 342 
     | 
    
         
            +
                    who was born in a cocoon at a scientific complex called The Beehive.\",\"modified\":\"2013-08-07T13:49:06-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/a/f0/5202887448860\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010354\",\"comics\":{\"available\":104,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17271\",\"name\":\"Annihilation:
         
     | 
| 
      
 343 
     | 
    
         
            +
                    Conquest (2007) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17405\",\"name\":\"Annihilation:
         
     | 
| 
      
 344 
     | 
    
         
            +
                    Conquest (2007) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17645\",\"name\":\"Annihilation:
         
     | 
| 
      
 345 
     | 
    
         
            +
                    Conquest (2007) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20686\",\"name\":\"Annihilation:
         
     | 
| 
      
 346 
     | 
    
         
            +
                    Conquest (2007) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20885\",\"name\":\"Annihilation:
         
     | 
| 
      
 347 
     | 
    
         
            +
                    Conquest (2007) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21016\",\"name\":\"Annihilation:
         
     | 
| 
      
 348 
     | 
    
         
            +
                    Conquest (2007) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12412\",\"name\":\"Avengers
         
     | 
| 
      
 349 
     | 
    
         
            +
                    Forever (1998) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1033\",\"name\":\"Avengers
         
     | 
| 
      
 350 
     | 
    
         
            +
                    Legends Vol. I: Avengers Forever (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20731\",\"name\":\"Clandestine
         
     | 
| 
      
 351 
     | 
    
         
            +
                    Classic Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20187\",\"name\":\"Doctor
         
     | 
| 
      
 352 
     | 
    
         
            +
                    Strange, Sorcerer Supreme (1988) #27\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20193\",\"name\":\"Doctor
         
     | 
| 
      
 353 
     | 
    
         
            +
                    Strange, Sorcerer Supreme (1988) #32\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20197\",\"name\":\"Doctor
         
     | 
| 
      
 354 
     | 
    
         
            +
                    Strange, Sorcerer Supreme (1988) #36\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8560\",\"name\":\"Earth
         
     | 
| 
      
 355 
     | 
    
         
            +
                    X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8552\",\"name\":\"Earth
         
     | 
| 
      
 356 
     | 
    
         
            +
                    X (1999) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8550\",\"name\":\"Earth
         
     | 
| 
      
 357 
     | 
    
         
            +
                    X (1999) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4241\",\"name\":\"Earth
         
     | 
| 
      
 358 
     | 
    
         
            +
                    X (New (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12975\",\"name\":\"Fantastic
         
     | 
| 
      
 359 
     | 
    
         
            +
                    Four (1961) #172\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13195\",\"name\":\"Fantastic
         
     | 
| 
      
 360 
     | 
    
         
            +
                    Four (1961) #370\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8988\",\"name\":\"Incredible
         
     | 
| 
      
 361 
     | 
    
         
            +
                    Hulk (1962) #177\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8989\",\"name\":\"Incredible
         
     | 
| 
      
 362 
     | 
    
         
            +
                    Hulk (1962) #178\"}],\"returned\":20},\"series\":{\"available\":46,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3061\",\"name\":\"Annihilation:
         
     | 
| 
      
 363 
     | 
    
         
            +
                    Conquest (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2111\",\"name\":\"Avengers
         
     | 
| 
      
 364 
     | 
    
         
            +
                    Forever (1998 - 2001)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/93\",\"name\":\"Avengers
         
     | 
| 
      
 365 
     | 
    
         
            +
                    Legends Vol. I: Avengers Forever (2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3874\",\"name\":\"Clandestine
         
     | 
| 
      
 366 
     | 
    
         
            +
                    Classic Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3741\",\"name\":\"Doctor
         
     | 
| 
      
 367 
     | 
    
         
            +
                    Strange, Sorcerer Supreme (1988 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/378\",\"name\":\"Earth
         
     | 
| 
      
 368 
     | 
    
         
            +
                    X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1806\",\"name\":\"Earth
         
     | 
| 
      
 369 
     | 
    
         
            +
                    X (New (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2121\",\"name\":\"Fantastic
         
     | 
| 
      
 370 
     | 
    
         
            +
                    Four (1961 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
         
     | 
| 
      
 371 
     | 
    
         
            +
                    Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2983\",\"name\":\"Incredible
         
     | 
| 
      
 372 
     | 
    
         
            +
                    Hulk Annual (1976 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6449\",\"name\":\"Infinity
         
     | 
| 
      
 373 
     | 
    
         
            +
                    Crusade Vol. 1 (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2039\",\"name\":\"Marvel
         
     | 
| 
      
 374 
     | 
    
         
            +
                    Comics Presents (1988 - 1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1697\",\"name\":\"Marvel
         
     | 
| 
      
 375 
     | 
    
         
            +
                    Comics Presents: Wolverine Vol. 4 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1837\",\"name\":\"Marvel
         
     | 
| 
      
 376 
     | 
    
         
            +
                    Masterworks: Warlock Vol. (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 377 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
         
     | 
| 
      
 378 
     | 
    
         
            +
                    Super-Heroes (1992 - 1993)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3715\",\"name\":\"Marvel
         
     | 
| 
      
 379 
     | 
    
         
            +
                    Two-in-One (1974 - 1983)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1504\",\"name\":\"Marvel
         
     | 
| 
      
 380 
     | 
    
         
            +
                    Visionaries: Steve Ditko (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/563\",\"name\":\"New
         
     | 
| 
      
 381 
     | 
    
         
            +
                    Mutants (2003 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7455\",\"name\":\"New
         
     | 
| 
      
 382 
     | 
    
         
            +
                    Mutants (2009 - 2011)\"}],\"returned\":20},\"stories\":{\"available\":124,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12569\",\"name\":\"Cry,
         
     | 
| 
      
 383 
     | 
    
         
            +
                    the Bedeviled Planet!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13121\",\"name\":\"Forever
         
     | 
| 
      
 384 
     | 
    
         
            +
                    Evil\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18500\",\"name\":\"Peril
         
     | 
| 
      
 385 
     | 
    
         
            +
                    of the Paired Planets\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18501\",\"name\":\"Peril
         
     | 
| 
      
 386 
     | 
    
         
            +
                    of the Paired Planets\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18503\",\"name\":\"Triumph
         
     | 
| 
      
 387 
     | 
    
         
            +
                    On Terra-Two\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19847\",\"name\":\"Cover
         
     | 
| 
      
 388 
     | 
    
         
            +
                    #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
         
     | 
| 
      
 389 
     | 
    
         
            +
                    of Future Present Part 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19860\",\"name\":\"You
         
     | 
| 
      
 390 
     | 
    
         
            +
                    Must Remember This\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19883\",\"name\":\"The
         
     | 
| 
      
 391 
     | 
    
         
            +
                    Adventures of Lockheed the Space Dragon and His Pet Girl, Kitty\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19884\",\"name\":\"The
         
     | 
| 
      
 392 
     | 
    
         
            +
                    Saga of Storm: Goddess of Thunder\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19885\",\"name\":\"There's
         
     | 
| 
      
 393 
     | 
    
         
            +
                    No Place Like Home\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19887\",\"name\":\"Cover
         
     | 
| 
      
 394 
     | 
    
         
            +
                    #19887\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19888\",\"name\":\"And
         
     | 
| 
      
 395 
     | 
    
         
            +
                    Men Shall Call Him Warlock\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19911\",\"name\":\"Cover
         
     | 
| 
      
 396 
     | 
    
         
            +
                    #19911\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19912\",\"name\":\"The
         
     | 
| 
      
 397 
     | 
    
         
            +
                    Hounds of Helios\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20169\",\"name\":\"Cover
         
     | 
| 
      
 398 
     | 
    
         
            +
                    #20169\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20170\",\"name\":\"The
         
     | 
| 
      
 399 
     | 
    
         
            +
                    Day of the Prophet\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20171\",\"name\":\"Cover
         
     | 
| 
      
 400 
     | 
    
         
            +
                    #20171\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20172\",\"name\":\"How
         
     | 
| 
      
 401 
     | 
    
         
            +
                    Strange My Destiny!  The Price!  Part I  Chapter I\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":10,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/293\",\"name\":\"Annihilation:
         
     | 
| 
      
 402 
     | 
    
         
            +
                    Conquest\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 403 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/235\",\"name\":\"Blood
         
     | 
| 
      
 404 
     | 
    
         
            +
                    and Thunder\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
         
     | 
| 
      
 405 
     | 
    
         
            +
                    of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 406 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 407 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 408 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/263\",\"name\":\"Mutant
         
     | 
| 
      
 409 
     | 
    
         
            +
                    Massacre\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 410 
     | 
    
         
            +
                    Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
         
     | 
| 
      
 411 
     | 
    
         
            +
                    Agenda\"}],\"returned\":10},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010354/adam_warlock?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Warlock,_Adam?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010846,\"name\":\"Aegis
         
     | 
| 
      
 412 
     | 
    
         
            +
                    (Trey Rollins)\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/5/e0/4c0035c9c425d\",\"extension\":\"gif\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010846\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010846/aegis_trey_rollins?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Aegis_%28Trey_Rollins%29?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011297,\"name\":\"Agent
         
     | 
| 
      
 413 
     | 
    
         
            +
                    Brand\",\"description\":\"\",\"modified\":\"2013-10-24T13:09:30-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/4/60/52695285d6e7e\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011297\",\"comics\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5477\",\"name\":\"Astonishing
         
     | 
| 
      
 414 
     | 
    
         
            +
                    X-Men (2004) #19 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38318\",\"name\":\"Astonishing
         
     | 
| 
      
 415 
     | 
    
         
            +
                    X-Men (2004) #38\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38319\",\"name\":\"Astonishing
         
     | 
| 
      
 416 
     | 
    
         
            +
                    X-Men (2004) #40\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40024\",\"name\":\"Astonishing
         
     | 
| 
      
 417 
     | 
    
         
            +
                    X-Men (2004) #40 (I Am Captain America Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39890\",\"name\":\"Heralds
         
     | 
| 
      
 418 
     | 
    
         
            +
                    (Trade Paperback)\"}],\"returned\":5},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 419 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13065\",\"name\":\"Heralds
         
     | 
| 
      
 420 
     | 
    
         
            +
                    (2010 - Present)\"}],\"returned\":2},\"stories\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/3353\",\"name\":\"Interior
         
     | 
| 
      
 421 
     | 
    
         
            +
                    #3353\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/89900\",\"name\":\"Astonishing
         
     | 
| 
      
 422 
     | 
    
         
            +
                    X-Men (2004) #38\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90548\",\"name\":\"Heralds
         
     | 
| 
      
 423 
     | 
    
         
            +
                    TPB\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90819\",\"name\":\"Interior
         
     | 
| 
      
 424 
     | 
    
         
            +
                    #90819\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90853\",\"name\":\"
         
     | 
| 
      
 425 
     | 
    
         
            +
                    Interior  Astonishing X-Men (2004) #40\",\"type\":\"interiorStory\"}],\"returned\":5},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011297/agent_brand?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_Brand?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011031,\"name\":\"Agent
         
     | 
| 
      
 426 
     | 
    
         
            +
                    X (Nijo)\",\"description\":\"Originally a partner of the mind-altering assassin
         
     | 
| 
      
 427 
     | 
    
         
            +
                    Black Swan, Nijo spied on Deadpool as part of the Swan's plan to exact revenge
         
     | 
| 
      
 428 
     | 
    
         
            +
                    for Deadpool falsely taking credit for the Swan's assassination of the Four
         
     | 
| 
      
 429 
     | 
    
         
            +
                    Winds crime family, which included Nijo's brother.\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011031\",\"comics\":{\"available\":10,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17702\",\"name\":\"Agent
         
     | 
| 
      
 430 
     | 
    
         
            +
                    X (2002) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17709\",\"name\":\"Agent
         
     | 
| 
      
 431 
     | 
    
         
            +
                    X (2002) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17710\",\"name\":\"Agent
         
     | 
| 
      
 432 
     | 
    
         
            +
                    X (2002) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17711\",\"name\":\"Agent
         
     | 
| 
      
 433 
     | 
    
         
            +
                    X (2002) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17712\",\"name\":\"Agent
         
     | 
| 
      
 434 
     | 
    
         
            +
                    X (2002) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17713\",\"name\":\"Agent
         
     | 
| 
      
 435 
     | 
    
         
            +
                    X (2002) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17704\",\"name\":\"Agent
         
     | 
| 
      
 436 
     | 
    
         
            +
                    X (2002) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1649\",\"name\":\"Cable
         
     | 
| 
      
 437 
     | 
    
         
            +
                    & Deadpool (2004) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21845\",\"name\":\"Cable
         
     | 
| 
      
 438 
     | 
    
         
            +
                    & Deadpool (2004) #46 (Zombie Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5761\",\"name\":\"Cable
         
     | 
| 
      
 439 
     | 
    
         
            +
                    & Deadpool Vol. 2: The Burnt Offering (Trade Paperback)\"}],\"returned\":10},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/459\",\"name\":\"Agent
         
     | 
| 
      
 440 
     | 
    
         
            +
                    X (2002 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/693\",\"name\":\"Cable
         
     | 
| 
      
 441 
     | 
    
         
            +
                    & Deadpool (2004 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1338\",\"name\":\"Cable
         
     | 
| 
      
 442 
     | 
    
         
            +
                    & Deadpool Vol. 2: The Burnt Offering (2007)\"}],\"returned\":3},\"stories\":{\"available\":15,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2484\",\"name\":\"2
         
     | 
| 
      
 443 
     | 
    
         
            +
                    of 2 - Thirty Pieces\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37514\",\"name\":\"Cover
         
     | 
| 
      
 444 
     | 
    
         
            +
                    #37514\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37515\",\"name\":\"Dead
         
     | 
| 
      
 445 
     | 
    
         
            +
                    Man's Switch Part One\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37518\",\"name\":\"Cover
         
     | 
| 
      
 446 
     | 
    
         
            +
                    #37518\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37525\",\"name\":\"Cover
         
     | 
| 
      
 447 
     | 
    
         
            +
                    #37525\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37526\",\"name\":\"Dead
         
     | 
| 
      
 448 
     | 
    
         
            +
                    Man's Switch Part Two\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37527\",\"name\":\"Cover
         
     | 
| 
      
 449 
     | 
    
         
            +
                    #37527\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37528\",\"name\":\"Dead
         
     | 
| 
      
 450 
     | 
    
         
            +
                    Man's Switch Part Three\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37529\",\"name\":\"Cover
         
     | 
| 
      
 451 
     | 
    
         
            +
                    #37529\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37530\",\"name\":\"Dead
         
     | 
| 
      
 452 
     | 
    
         
            +
                    Man's Switch Part Four\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37531\",\"name\":\"Cover
         
     | 
| 
      
 453 
     | 
    
         
            +
                    #37531\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37532\",\"name\":\"Dead
         
     | 
| 
      
 454 
     | 
    
         
            +
                    Man's Switch Part Five\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37533\",\"name\":\"Cover
         
     | 
| 
      
 455 
     | 
    
         
            +
                    #37533\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37534\",\"name\":\"Dead
         
     | 
| 
      
 456 
     | 
    
         
            +
                    Man's Switch Part Six\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/94769\",\"name\":\"Cable
         
     | 
| 
      
 457 
     | 
    
         
            +
                    & Deadpool (2004) #46, Zombie Variant\",\"type\":\"cover\"}],\"returned\":15},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011031/agent_x_nijo?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_X_(Nijo)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009150,\"name\":\"Agent
         
     | 
| 
      
 458 
     | 
    
         
            +
                    Zero\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/60/4c0042121d790\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009150\",\"comics\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3357\",\"name\":\"Weapon
         
     | 
| 
      
 459 
     | 
    
         
            +
                    X: Days of Future Now (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2438\",\"name\":\"Weapon
         
     | 
| 
      
 460 
     | 
    
         
            +
                    X: Days of Future Now (2005) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18293\",\"name\":\"What
         
     | 
| 
      
 461 
     | 
    
         
            +
                    If? (1989)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14182\",\"name\":\"Wolverine
         
     | 
| 
      
 462 
     | 
    
         
            +
                    (1988) #60\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14183\",\"name\":\"Wolverine
         
     | 
| 
      
 463 
     | 
    
         
            +
                    (1988) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14184\",\"name\":\"Wolverine
         
     | 
| 
      
 464 
     | 
    
         
            +
                    (1988) #62\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14185\",\"name\":\"Wolverine
         
     | 
| 
      
 465 
     | 
    
         
            +
                    (1988) #63\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14186\",\"name\":\"Wolverine
         
     | 
| 
      
 466 
     | 
    
         
            +
                    (1988) #64\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14189\",\"name\":\"Wolverine
         
     | 
| 
      
 467 
     | 
    
         
            +
                    (1988) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14190\",\"name\":\"Wolverine
         
     | 
| 
      
 468 
     | 
    
         
            +
                    (1988) #68\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14211\",\"name\":\"Wolverine
         
     | 
| 
      
 469 
     | 
    
         
            +
                    (1988) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14107\",\"name\":\"Wolverine
         
     | 
| 
      
 470 
     | 
    
         
            +
                    (1988) #163\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14110\",\"name\":\"Wolverine
         
     | 
| 
      
 471 
     | 
    
         
            +
                    (1988) #166\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14121\",\"name\":\"Wolverine
         
     | 
| 
      
 472 
     | 
    
         
            +
                    (1988) #176\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1023\",\"name\":\"Wolverine/Deadpool:
         
     | 
| 
      
 473 
     | 
    
         
            +
                    Weapon X (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18176\",\"name\":\"X-Man
         
     | 
| 
      
 474 
     | 
    
         
            +
                    (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14282\",\"name\":\"X-Men
         
     | 
| 
      
 475 
     | 
    
         
            +
                    (1991) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14293\",\"name\":\"X-Men
         
     | 
| 
      
 476 
     | 
    
         
            +
                    (1991) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18132\",\"name\":\"X-Men
         
     | 
| 
      
 477 
     | 
    
         
            +
                    Unlimited (1993) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18116\",\"name\":\"X-Men
         
     | 
| 
      
 478 
     | 
    
         
            +
                    Unlimited (1993) #15\"}],\"returned\":20},\"series\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1478\",\"name\":\"Weapon
         
     | 
| 
      
 479 
     | 
    
         
            +
                    X: Days of Future Now (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/869\",\"name\":\"Weapon
         
     | 
| 
      
 480 
     | 
    
         
            +
                    X: Days of Future Now (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3648\",\"name\":\"What
         
     | 
| 
      
 481 
     | 
    
         
            +
                    If? (1989 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2262\",\"name\":\"Wolverine
         
     | 
| 
      
 482 
     | 
    
         
            +
                    (1988 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/84\",\"name\":\"Wolverine/Deadpool:
         
     | 
| 
      
 483 
     | 
    
         
            +
                    Weapon X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3643\",\"name\":\"X-Man
         
     | 
| 
      
 484 
     | 
    
         
            +
                    (1995 - 2000)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2265\",\"name\":\"X-Men
         
     | 
| 
      
 485 
     | 
    
         
            +
                    (1991 - 2001)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3637\",\"name\":\"X-Men
         
     | 
| 
      
 486 
     | 
    
         
            +
                    Unlimited (1993 - 1999)\"}],\"returned\":8},\"stories\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4606\",\"name\":\"3
         
     | 
| 
      
 487 
     | 
    
         
            +
                    of 5 - 5XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28706\",\"name\":\"The
         
     | 
| 
      
 488 
     | 
    
         
            +
                    Hunted Part 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28712\",\"name\":\"The
         
     | 
| 
      
 489 
     | 
    
         
            +
                    Hunted Part 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28738\",\"name\":\"The
         
     | 
| 
      
 490 
     | 
    
         
            +
                    Logan Files Epilogue\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28881\",\"name\":\"Counting
         
     | 
| 
      
 491 
     | 
    
         
            +
                    Coup\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28883\",\"name\":\"Nightmare
         
     | 
| 
      
 492 
     | 
    
         
            +
                    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
         
     | 
| 
      
 493 
     | 
    
         
            +
                    of Glory!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28889\",\"name\":\"What
         
     | 
| 
      
 494 
     | 
    
         
            +
                    Goes Around...\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28895\",\"name\":\"Valley
         
     | 
| 
      
 495 
     | 
    
         
            +
                    O' Death\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28897\",\"name\":\"Epsilon
         
     | 
| 
      
 496 
     | 
    
         
            +
                    Red\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28941\",\"name\":\"Showdown
         
     | 
| 
      
 497 
     | 
    
         
            +
                    In Lowtown\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/29125\",\"name\":\"Last
         
     | 
| 
      
 498 
     | 
    
         
            +
                    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
         
     | 
| 
      
 499 
     | 
    
         
            +
                    Contact\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38554\",\"name\":\"Among
         
     | 
| 
      
 500 
     | 
    
         
            +
                    Us--A Sabretooth\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38555\",\"name\":\"The
         
     | 
| 
      
 501 
     | 
    
         
            +
                    Whispers Scream\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38556\",\"name\":\"Sabretooth
         
     | 
| 
      
 502 
     | 
    
         
            +
                    Vs. Maverick: Severed Ties\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38650\",\"name\":\"Maverick\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38903\",\"name\":\"Maverick\",\"type\":\"\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009150/agent_zero?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_Zero?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011198,\"name\":\"Agents
         
     | 
| 
      
 503 
     | 
    
         
            +
                    of Atlas\",\"description\":\"\",\"modified\":\"2010-11-17T14:36:25-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4ce18a834b7f5\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011198\",\"comics\":{\"available\":31,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6318\",\"name\":\"Agents
         
     | 
| 
      
 504 
     | 
    
         
            +
                    of Atlas (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23659\",\"name\":\"Agents
         
     | 
| 
      
 505 
     | 
    
         
            +
                    of Atlas (2009) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4801\",\"name\":\"Agents
         
     | 
| 
      
 506 
     | 
    
         
            +
                    of Atlas (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23660\",\"name\":\"Agents
         
     | 
| 
      
 507 
     | 
    
         
            +
                    of Atlas (2009) #1 (50/50 COVER)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23825\",\"name\":\"Agents
         
     | 
| 
      
 508 
     | 
    
         
            +
                    of Atlas (2009) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5089\",\"name\":\"Agents
         
     | 
| 
      
 509 
     | 
    
         
            +
                    of Atlas (2006) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23824\",\"name\":\"Agents
         
     | 
| 
      
 510 
     | 
    
         
            +
                    of Atlas (2009) #2 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27402\",\"name\":\"Agents
         
     | 
| 
      
 511 
     | 
    
         
            +
                    of Atlas (2009) #2 (BACHALO 2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5241\",\"name\":\"Agents
         
     | 
| 
      
 512 
     | 
    
         
            +
                    of Atlas (2006) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24015\",\"name\":\"Agents
         
     | 
| 
      
 513 
     | 
    
         
            +
                    of Atlas (2009) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24016\",\"name\":\"Agents
         
     | 
| 
      
 514 
     | 
    
         
            +
                    of Atlas (2009) #3 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24017\",\"name\":\"Agents
         
     | 
| 
      
 515 
     | 
    
         
            +
                    of Atlas (2009) #3 (Wolverine Art Appreciation Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24219\",\"name\":\"Agents
         
     | 
| 
      
 516 
     | 
    
         
            +
                    of Atlas (2009) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5404\",\"name\":\"Agents
         
     | 
| 
      
 517 
     | 
    
         
            +
                    of Atlas (2006) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24221\",\"name\":\"Agents
         
     | 
| 
      
 518 
     | 
    
         
            +
                    of Atlas (2009) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5665\",\"name\":\"Agents
         
     | 
| 
      
 519 
     | 
    
         
            +
                    of Atlas (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24222\",\"name\":\"Agents
         
     | 
| 
      
 520 
     | 
    
         
            +
                    of Atlas (2009) #5 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5842\",\"name\":\"Agents
         
     | 
| 
      
 521 
     | 
    
         
            +
                    of Atlas (2006) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24360\",\"name\":\"Agents
         
     | 
| 
      
 522 
     | 
    
         
            +
                    of Atlas (2009) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24361\",\"name\":\"Agents
         
     | 
| 
      
 523 
     | 
    
         
            +
                    of Atlas (2009) #7\"}],\"returned\":20},\"series\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1980\",\"name\":\"Agents
         
     | 
| 
      
 524 
     | 
    
         
            +
                    of Atlas (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1097\",\"name\":\"Agents
         
     | 
| 
      
 525 
     | 
    
         
            +
                    of Atlas (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6807\",\"name\":\"Agents
         
     | 
| 
      
 526 
     | 
    
         
            +
                    of Atlas (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9181\",\"name\":\"Avengers
         
     | 
| 
      
 527 
     | 
    
         
            +
                    Vs. Atlas (2010)\"}],\"returned\":4},\"stories\":{\"available\":32,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6009\",\"name\":\"1
         
     | 
| 
      
 528 
     | 
    
         
            +
                    of 6 - 6 XLS-\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6011\",\"name\":\"2
         
     | 
| 
      
 529 
     | 
    
         
            +
                    of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6013\",\"name\":\"3
         
     | 
| 
      
 530 
     | 
    
         
            +
                    of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6015\",\"name\":\"4
         
     | 
| 
      
 531 
     | 
    
         
            +
                    of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6017\",\"name\":\"5
         
     | 
| 
      
 532 
     | 
    
         
            +
                    of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6019\",\"name\":\"5
         
     | 
| 
      
 533 
     | 
    
         
            +
                    of 6 - Story A - 6XLS\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52393\",\"name\":\"1
         
     | 
| 
      
 534 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52395\",\"name\":\"1
         
     | 
| 
      
 535 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52861\",\"name\":\"2
         
     | 
| 
      
 536 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52863\",\"name\":\"2
         
     | 
| 
      
 537 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53263\",\"name\":\"3
         
     | 
| 
      
 538 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53265\",\"name\":\"3
         
     | 
| 
      
 539 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53266\",\"name\":\"3
         
     | 
| 
      
 540 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53669\",\"name\":\"1
         
     | 
| 
      
 541 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53673\",\"name\":\"2
         
     | 
| 
      
 542 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53675\",\"name\":\"2
         
     | 
| 
      
 543 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53893\",\"name\":\"Interior
         
     | 
| 
      
 544 
     | 
    
         
            +
                    #53893\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53895\",\"name\":\"Interior
         
     | 
| 
      
 545 
     | 
    
         
            +
                    #53895\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53897\",\"name\":\"Interior
         
     | 
| 
      
 546 
     | 
    
         
            +
                    #53897\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53899\",\"name\":\"Interior
         
     | 
| 
      
 547 
     | 
    
         
            +
                    #53899\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 548 
     | 
    
         
            +
                    Reign\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011198/agents_of_atlas?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agents_of_Atlas?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011175,\"name\":\"Aginar\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011175\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011175/aginar?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Aginar?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011136,\"name\":\"Air-Walker
         
     | 
| 
      
 549 
     | 
    
         
            +
                    (Gabriel Lan)\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011136\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5589\",\"name\":\"Heroes
         
     | 
| 
      
 550 
     | 
    
         
            +
                    Reborn: Iron Man (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16330\",\"name\":\"Iron
         
     | 
| 
      
 551 
     | 
    
         
            +
                    Man (1996) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16331\",\"name\":\"Iron
         
     | 
| 
      
 552 
     | 
    
         
            +
                    Man (1996) #12\"}],\"returned\":3},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1814\",\"name\":\"Heroes
         
     | 
| 
      
 553 
     | 
    
         
            +
                    Reborn: Iron Man (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13577\",\"name\":\"Iron
         
     | 
| 
      
 554 
     | 
    
         
            +
                    Man (1996 - 1998)\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34082\",\"name\":\"Magical
         
     | 
| 
      
 555 
     | 
    
         
            +
                    Mystery Tour\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34085\",\"name\":\"Matters
         
     | 
| 
      
 556 
     | 
    
         
            +
                    of the Heart\",\"type\":\"interiorStory\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011136/air-walker_gabriel_lan?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Air-Walker_(Gabriel_Lan)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011176,\"name\":\"Ajak\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/80/4c002f35c5215\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011176\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011176/ajak?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Ajak?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010870,\"name\":\"Ajaxis\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/70/4c0035adc7d3a\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010870\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010870/ajaxis?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Ajaxis?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011194,\"name\":\"Akemi\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011194\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011194/akemi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 557 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 558 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 559 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 560 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 561 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters/1009521?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 562 
     | 
    
         
            +
                body:
         
     | 
| 
      
 563 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 564 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 565 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 566 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 567 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 568 
     | 
    
         
            +
              response:
         
     | 
| 
      
 569 
     | 
    
         
            +
                status:
         
     | 
| 
      
 570 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 571 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 572 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 573 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 574 
     | 
    
         
            +
                  - a441c2d4f28c6db25c9da4270cf84b4fa2f9180b
         
     | 
| 
      
 575 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 576 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 577 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 578 
     | 
    
         
            +
                  - '7285'
         
     | 
| 
      
 579 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 580 
     | 
    
         
            +
                  - Sun, 09 Feb 2014 20:11:48 GMT
         
     | 
| 
      
 581 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 582 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 583 
     | 
    
         
            +
                body:
         
     | 
| 
      
 584 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 585 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"a441c2d4f28c6db25c9da4270cf84b4fa2f9180b\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009521,\"name\":\"
         
     | 
| 
      
 586 
     | 
    
         
            +
                    Hank Pym\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/c0/4ce5a0e31f109\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009521\",\"comics\":{\"available\":44,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35533\",\"name\":\"Amazing
         
     | 
| 
      
 587 
     | 
    
         
            +
                    Spider-Man (1999) #661\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39041\",\"name\":\"Amazing
         
     | 
| 
      
 588 
     | 
    
         
            +
                    Spider-Man (1999) #661 (X-Men Art Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35534\",\"name\":\"Amazing
         
     | 
| 
      
 589 
     | 
    
         
            +
                    Spider-Man (1999) #662\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7336\",\"name\":\"Avengers
         
     | 
| 
      
 590 
     | 
    
         
            +
                    (1963) #83\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7353\",\"name\":\"Avengers
         
     | 
| 
      
 591 
     | 
    
         
            +
                    (1963) #99\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6995\",\"name\":\"Avengers
         
     | 
| 
      
 592 
     | 
    
         
            +
                    (1963) #138\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7004\",\"name\":\"Avengers
         
     | 
| 
      
 593 
     | 
    
         
            +
                    (1963) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7015\",\"name\":\"Avengers
         
     | 
| 
      
 594 
     | 
    
         
            +
                    (1963) #156\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29213\",\"name\":\"Avengers
         
     | 
| 
      
 595 
     | 
    
         
            +
                    Academy (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36770\",\"name\":\"Avengers
         
     | 
| 
      
 596 
     | 
    
         
            +
                    Academy (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34490\",\"name\":\"Avengers
         
     | 
| 
      
 597 
     | 
    
         
            +
                    Academy (2010) #1 (DJURDJEVIC VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29217\",\"name\":\"Avengers
         
     | 
| 
      
 598 
     | 
    
         
            +
                    Academy (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36482\",\"name\":\"Avengers
         
     | 
| 
      
 599 
     | 
    
         
            +
                    Academy (2010) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36479\",\"name\":\"Avengers
         
     | 
| 
      
 600 
     | 
    
         
            +
                    Academy (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36489\",\"name\":\"Avengers
         
     | 
| 
      
 601 
     | 
    
         
            +
                    Academy (2010) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29324\",\"name\":\"Avengers
         
     | 
| 
      
 602 
     | 
    
         
            +
                    Academy Vol 1 : Permanent Record TPB (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6040\",\"name\":\"Beyond!
         
     | 
| 
      
 603 
     | 
    
         
            +
                    (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4447\",\"name\":\"Beyond!
         
     | 
| 
      
 604 
     | 
    
         
            +
                    (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30015\",\"name\":\"Incredible
         
     | 
| 
      
 605 
     | 
    
         
            +
                    Hulks (2009) #607 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13477\",\"name\":\"Mighty
         
     | 
| 
      
 606 
     | 
    
         
            +
                    Avengers (2007) #3\"}],\"returned\":20},\"series\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 607 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 608 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 609 
     | 
    
         
            +
                    Academy (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10037\",\"name\":\"Avengers
         
     | 
| 
      
 610 
     | 
    
         
            +
                    Academy Vol 1 : Permanent Record TPB (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1928\",\"name\":\"Beyond!
         
     | 
| 
      
 611 
     | 
    
         
            +
                    (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/997\",\"name\":\"Beyond!
         
     | 
| 
      
 612 
     | 
    
         
            +
                    (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 613 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1866\",\"name\":\"Mighty
         
     | 
| 
      
 614 
     | 
    
         
            +
                    Avengers (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5381\",\"name\":\"Mighty
         
     | 
| 
      
 615 
     | 
    
         
            +
                    Avengers Vol. 1: The Ultron Initiative (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12877\",\"name\":\"The
         
     | 
| 
      
 616 
     | 
    
         
            +
                    Iron Age (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2715\",\"name\":\"Women
         
     | 
| 
      
 617 
     | 
    
         
            +
                    of Marvel Vol. 2 (2007)\"}],\"returned\":11},\"stories\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5621\",\"name\":\"1
         
     | 
| 
      
 618 
     | 
    
         
            +
                    of 6 - 6XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8682\",\"name\":\"3
         
     | 
| 
      
 619 
     | 
    
         
            +
                    of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14528\",\"name\":\"Stranger
         
     | 
| 
      
 620 
     | 
    
         
            +
                    in a Strange Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14546\",\"name\":\"The
         
     | 
| 
      
 621 
     | 
    
         
            +
                    Assassin Never Fails!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14568\",\"name\":\"The
         
     | 
| 
      
 622 
     | 
    
         
            +
                    Private War of Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15235\",\"name\":\"Come
         
     | 
| 
      
 623 
     | 
    
         
            +
                    On In, The Revolution's Fine\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15269\",\"name\":\"They
         
     | 
| 
      
 624 
     | 
    
         
            +
                    First Make Mad\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32378\",\"name\":\"4
         
     | 
| 
      
 625 
     | 
    
         
            +
                    of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36886\",\"name\":\"Venom
         
     | 
| 
      
 626 
     | 
    
         
            +
                    Bomb 2 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44681\",\"name\":\"Venom
         
     | 
| 
      
 627 
     | 
    
         
            +
                    Bomb 5 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47781\",\"name\":\"Secret
         
     | 
| 
      
 628 
     | 
    
         
            +
                    Invasion 6 of 8\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52267\",\"name\":\"2
         
     | 
| 
      
 629 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52726\",\"name\":\"3
         
     | 
| 
      
 630 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53148\",\"name\":\"1
         
     | 
| 
      
 631 
     | 
    
         
            +
                    of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53543\",\"name\":\"1
         
     | 
| 
      
 632 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57228\",\"name\":\"Interior
         
     | 
| 
      
 633 
     | 
    
         
            +
                    #57228\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57230\",\"name\":\"Interior
         
     | 
| 
      
 634 
     | 
    
         
            +
                    #57230\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57232\",\"name\":\"Interior
         
     | 
| 
      
 635 
     | 
    
         
            +
                    #57232\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57234\",\"name\":\"Interior
         
     | 
| 
      
 636 
     | 
    
         
            +
                    #57234\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57236\",\"name\":\"Interior
         
     | 
| 
      
 637 
     | 
    
         
            +
                    #57236\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 638 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 639 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 640 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
         
     | 
| 
      
 641 
     | 
    
         
            +
                    Heroes\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":6},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009521/_hank_pym?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 642 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 643 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 644 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |