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
 
| 
         @@ -0,0 +1,743 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/150/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 
     | 
    
         
            +
                  - e5067566ebc5ce67620d3c8f0ee832ad1643a5c4
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '28259'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Mon, 10 Feb 2014 19:10:10 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"e5067566ebc5ce67620d3c8f0ee832ad1643a5c4\",\"data\":{\"offset\":0,\"limit\":20,\"total\":3,\"count\":3,\"results\":[{\"id\":1009144,\"name\":\"A.I.M.\",\"description\":\"AIM
         
     | 
| 
      
 30 
     | 
    
         
            +
                    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
         
     | 
| 
      
 31 
     | 
    
         
            +
                    & the Wasp (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17553\",\"name\":\"Avengers
         
     | 
| 
      
 32 
     | 
    
         
            +
                    (1998) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7340\",\"name\":\"Avengers
         
     | 
| 
      
 33 
     | 
    
         
            +
                    (1963) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1170\",\"name\":\"Avengers
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Vol. 2: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1214\",\"name\":\"Avengers
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Vol. II: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12787\",\"name\":\"Captain
         
     | 
| 
      
 36 
     | 
    
         
            +
                    America (1998) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20367\",\"name\":\"Defenders
         
     | 
| 
      
 37 
     | 
    
         
            +
                    (1972) #57\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31068\",\"name\":\"Incredible
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Hulks (2009) #606 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36737\",\"name\":\"Marvel
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Adventures Super Heroes (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2110\",\"name\":\"Marvel
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1130\",\"name\":\"Marvel
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2319\",\"name\":\"Marvel
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2820\",\"name\":\"Marvel
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2001\",\"name\":\"Marvel
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17468\",\"name\":\"Marvel
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1164\",\"name\":\"Marvel
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11068\",\"name\":\"Strange
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Tales (1951) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11069\",\"name\":\"Strange
         
     | 
| 
      
 48 
     | 
    
         
            +
                    Tales (1951) #147\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11070\",\"name\":\"Strange
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Tales (1951) #148\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11324\",\"name\":\"Tales
         
     | 
| 
      
 50 
     | 
    
         
            +
                    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
         
     | 
| 
      
 51 
     | 
    
         
            +
                    & the Wasp (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 52 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 53 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/227\",\"name\":\"Avengers
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Vol. 2: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/271\",\"name\":\"Avengers
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Vol. II: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
         
     | 
| 
      
 56 
     | 
    
         
            +
                    America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3743\",\"name\":\"Defenders
         
     | 
| 
      
 57 
     | 
    
         
            +
                    (1972 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9718\",\"name\":\"Marvel
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Adventures Super Heroes (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1506\",\"name\":\"Marvel
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/189\",\"name\":\"Marvel
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1468\",\"name\":\"Marvel
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1494\",\"name\":\"Marvel
         
     | 
| 
      
 63 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3300\",\"name\":\"Marvel
         
     | 
| 
      
 64 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (0000 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/222\",\"name\":\"Marvel
         
     | 
| 
      
 65 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2076\",\"name\":\"Strange
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Tales (1951 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2079\",\"name\":\"Tales
         
     | 
| 
      
 67 
     | 
    
         
            +
                    of Suspense (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2725\",\"name\":\"Tales
         
     | 
| 
      
 68 
     | 
    
         
            +
                    of Suspsnse Transport (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13213\",\"name\":\"Taskmaster
         
     | 
| 
      
 69 
     | 
    
         
            +
                    (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
         
     | 
| 
      
 70 
     | 
    
         
            +
                    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
         
     | 
| 
      
 71 
     | 
    
         
            +
                    the Unliving Strike\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10255\",\"name\":\"Cover
         
     | 
| 
      
 72 
     | 
    
         
            +
                    #10255\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10256\",\"name\":\"The
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Enemy Within!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10259\",\"name\":\"Death
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Before Dishonor!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10261\",\"name\":\"Cover
         
     | 
| 
      
 75 
     | 
    
         
            +
                    #10261\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10262\",\"name\":\"The
         
     | 
| 
      
 76 
     | 
    
         
            +
                    End of A.I.M.!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11921\",\"name\":\"The
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11930\",\"name\":\"He
         
     | 
| 
      
 78 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11936\",\"name\":\"The
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11981\",\"name\":\"If
         
     | 
| 
      
 80 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11984\",\"name\":\"A
         
     | 
| 
      
 81 
     | 
    
         
            +
                    Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11995\",\"name\":\"At
         
     | 
| 
      
 82 
     | 
    
         
            +
                    the Mercy of the Maggia\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15243\",\"name\":\"Look
         
     | 
| 
      
 83 
     | 
    
         
            +
                    Homeward, Avenger\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28233\",\"name\":\"In
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Sin Airy X\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28971\",\"name\":\"[The
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Brothers Part I]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34426\",\"name\":\"The
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34435\",\"name\":\"He
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34441\",\"name\":\"The
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34486\",\"name\":\"If
         
     | 
| 
      
 89 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34489\",\"name\":\"A
         
     | 
| 
      
 90 
     | 
    
         
            +
                    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\":1009368,\"name\":\"Iron
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Man\",\"description\":\"Wounded, captured and forced to build a weapon by
         
     | 
| 
      
 92 
     | 
    
         
            +
                    his enemies, billionaire industrialist Tony Stark instead created an advanced
         
     | 
| 
      
 93 
     | 
    
         
            +
                    suit of armor to save his life and escape captivity. Now with a new outlook
         
     | 
| 
      
 94 
     | 
    
         
            +
                    on life, Tony uses his money and intelligence to make the world a safer, better
         
     | 
| 
      
 95 
     | 
    
         
            +
                    place as Iron Man.\",\"modified\":\"2013-11-07T10:55:38-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/527bb7b37ff55\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"comics\":{\"available\":2027,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24348\",\"name\":\"Adam:
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Legend of the Blue Marvel (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22461\",\"name\":\"Adam:
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22856\",\"name\":\"Adam:
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
         
     | 
| 
      
 99 
     | 
    
         
            +
                    of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21280\",\"name\":\"All-New
         
     | 
| 
      
 100 
     | 
    
         
            +
                    Iron Manual (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 101 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
         
     | 
| 
      
 102 
     | 
    
         
            +
                    Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 107 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35532\",\"name\":\"Amazing
         
     | 
| 
      
 108 
     | 
    
         
            +
                    Spider-Man (1999) #668\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22433\",\"name\":\"Annihilation
         
     | 
| 
      
 109 
     | 
    
         
            +
                    Classic (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39896\",\"name\":\"Art
         
     | 
| 
      
 110 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31210\",\"name\":\"Astonishing
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31211\",\"name\":\"Astonishing
         
     | 
| 
      
 112 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (FOILOGRAM VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36616\",\"name\":\"Astonishing
         
     | 
| 
      
 113 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36441\",\"name\":\"Astonishing
         
     | 
| 
      
 114 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31219\",\"name\":\"Astonishing
         
     | 
| 
      
 115 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #2\"}],\"returned\":20},\"series\":{\"available\":443,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7524\",\"name\":\"Adam:
         
     | 
| 
      
 116 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6079\",\"name\":\"Adam:
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
         
     | 
| 
      
 118 
     | 
    
         
            +
                    of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4897\",\"name\":\"All-New
         
     | 
| 
      
 119 
     | 
    
         
            +
                    Iron Manual (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 120 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 121 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6056\",\"name\":\"Annihilation
         
     | 
| 
      
 122 
     | 
    
         
            +
                    Classic (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14779\",\"name\":\"Art
         
     | 
| 
      
 123 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 125 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6697\",\"name\":\"Astonishing
         
     | 
| 
      
 126 
     | 
    
         
            +
                    Tales: Iron Man 2020 (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6698\",\"name\":\"Astonishing
         
     | 
| 
      
 127 
     | 
    
         
            +
                    Tales: One Shots (Iron Man) (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 129 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 130 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 131 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 132 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 133 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
         
     | 
| 
      
 134 
     | 
    
         
            +
                    (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 135 
     | 
    
         
            +
                    Academy (2010 - 2012)\"}],\"returned\":20},\"stories\":{\"available\":2885,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/892\",\"name\":\"Cover
         
     | 
| 
      
 136 
     | 
    
         
            +
                    #892\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 137 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/982\",\"name\":\"Interior
         
     | 
| 
      
 138 
     | 
    
         
            +
                    #982\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/984\",\"name\":\"Interior
         
     | 
| 
      
 139 
     | 
    
         
            +
                    #984\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/986\",\"name\":\"Interior
         
     | 
| 
      
 140 
     | 
    
         
            +
                    #986\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/988\",\"name\":\"Interior
         
     | 
| 
      
 141 
     | 
    
         
            +
                    #988\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/990\",\"name\":\"Interior
         
     | 
| 
      
 142 
     | 
    
         
            +
                    #990\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/992\",\"name\":\"Interior
         
     | 
| 
      
 143 
     | 
    
         
            +
                    #992\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/994\",\"name\":\"Interior
         
     | 
| 
      
 144 
     | 
    
         
            +
                    #994\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/996\",\"name\":\"Interior
         
     | 
| 
      
 145 
     | 
    
         
            +
                    #996\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/998\",\"name\":\"Interior
         
     | 
| 
      
 146 
     | 
    
         
            +
                    #998\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1000\",\"name\":\"Interior
         
     | 
| 
      
 147 
     | 
    
         
            +
                    #1000\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1002\",\"name\":\"AVENGERS
         
     | 
| 
      
 148 
     | 
    
         
            +
                    DISASSEMBLED TIE-IN! Still reeling from recent traumas, Iron Man must face
         
     | 
| 
      
 149 
     | 
    
         
            +
                    off against his evil doppelganger. Meanwhile\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1004\",\"name\":\"\\\"THE
         
     | 
| 
      
 150 
     | 
    
         
            +
                    SINGULARITY\\\" CONCLUSION! PART 4 (OF 4) The battle rages on between Iron
         
     | 
| 
      
 151 
     | 
    
         
            +
                    Man and his doppelganger, but only one of them can \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1041\",\"name\":\"Avengers
         
     | 
| 
      
 152 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 153 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1186\",\"name\":\"2
         
     | 
| 
      
 154 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1188\",\"name\":\"3
         
     | 
| 
      
 155 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1189\",\"name\":\"1
         
     | 
| 
      
 156 
     | 
    
         
            +
                    of 6 - The War at Home\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1191\",\"name\":\"2
         
     | 
| 
      
 157 
     | 
    
         
            +
                    of 6 - Spider-Man: The War at Home\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 158 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 159 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/231\",\"name\":\"Armor
         
     | 
| 
      
 160 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 161 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/234\",\"name\":\"Avengers
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Disassembled\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 163 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 164 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 165 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/239\",\"name\":\"Crossing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 166 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 167 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 168 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 169 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 170 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 171 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 172 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 174 
     | 
    
         
            +
                    Wars\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009368/iron_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Iron_Man_(Anthony_Stark)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009718,\"name\":\"Wolverine\",\"description\":\"Born
         
     | 
| 
      
 175 
     | 
    
         
            +
                    with super-human senses and the power to heal from almost any wound, Wolverine
         
     | 
| 
      
 176 
     | 
    
         
            +
                    was captured by a secret Canadian organization and given an unbreakable skeleton
         
     | 
| 
      
 177 
     | 
    
         
            +
                    and claws. Treated like an animal, it took years for him to control himself.
         
     | 
| 
      
 178 
     | 
    
         
            +
                    Now, he's a premiere member of both the X-Men and the Avengers.\",\"modified\":\"2013-11-20T17:40:18-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/00/528d3a1eb24ee\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"comics\":{\"available\":1793,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41112\",\"name\":\"5
         
     | 
| 
      
 179 
     | 
    
         
            +
                    Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41113\",\"name\":\"5
         
     | 
| 
      
 180 
     | 
    
         
            +
                    Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38756\",\"name\":\"5
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Ronin (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36162\",\"name\":\"5
         
     | 
| 
      
 182 
     | 
    
         
            +
                    Ronin (2010) #1 (AJA Cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29317\",\"name\":\"ACTS
         
     | 
| 
      
 183 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29318\",\"name\":\"ACTS
         
     | 
| 
      
 184 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24017\",\"name\":\"Agents
         
     | 
| 
      
 185 
     | 
    
         
            +
                    of Atlas (2009) #3 (Wolverine Art Appreciation Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24221\",\"name\":\"Agents
         
     | 
| 
      
 186 
     | 
    
         
            +
                    of Atlas (2009) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24222\",\"name\":\"Agents
         
     | 
| 
      
 187 
     | 
    
         
            +
                    of Atlas (2009) #5 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12690\",\"name\":\"Alpha
         
     | 
| 
      
 188 
     | 
    
         
            +
                    Flight (1983) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12671\",\"name\":\"Alpha
         
     | 
| 
      
 189 
     | 
    
         
            +
                    Flight (1983) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12675\",\"name\":\"Alpha
         
     | 
| 
      
 190 
     | 
    
         
            +
                    Flight (1983) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12676\",\"name\":\"Alpha
         
     | 
| 
      
 191 
     | 
    
         
            +
                    Flight (1983) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12694\",\"name\":\"Alpha
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Flight (1983) #33\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12695\",\"name\":\"Alpha
         
     | 
| 
      
 193 
     | 
    
         
            +
                    Flight (1983) #34\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12715\",\"name\":\"Alpha
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Flight (1983) #52\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12716\",\"name\":\"Alpha
         
     | 
| 
      
 195 
     | 
    
         
            +
                    Flight (1983) #53\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12725\",\"name\":\"Alpha
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Flight (1983) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12753\",\"name\":\"Alpha
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Flight (1983) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12754\",\"name\":\"Alpha
         
     | 
| 
      
 198 
     | 
    
         
            +
                    Flight (1983) #88\"}],\"returned\":20},\"series\":{\"available\":435,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15276\",\"name\":\"5
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Ronin (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12429\",\"name\":\"5
         
     | 
| 
      
 200 
     | 
    
         
            +
                    Ronin (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9994\",\"name\":\"ACTS
         
     | 
| 
      
 201 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9995\",\"name\":\"ACTS
         
     | 
| 
      
 202 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6807\",\"name\":\"Agents
         
     | 
| 
      
 203 
     | 
    
         
            +
                    of Atlas (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1983\",\"name\":\"Alpha
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Flight Classic Vol. 1 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"name\":\"Amazing
         
     | 
| 
      
 206 
     | 
    
         
            +
                    Spider-Man (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 207 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2984\",\"name\":\"Amazing
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Spider-Man Annual (1964 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7197\",\"name\":\"Anita
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Blake: The Laughing Corpse - Necromancer (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14818\",\"name\":\"Annihilators:
         
     | 
| 
      
 210 
     | 
    
         
            +
                    Earthfall (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11110\",\"name\":\"Astonishing
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 213 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 215 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 216 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1464\",\"name\":\"Astonishing
         
     | 
| 
      
 217 
     | 
    
         
            +
                    X-Men Vol. 1 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1298\",\"name\":\"Astonishing
         
     | 
| 
      
 218 
     | 
    
         
            +
                    X-Men Vol. 1: Gifted (2004)\"}],\"returned\":20},\"stories\":{\"available\":2444,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/477\",\"name\":\"Cover
         
     | 
| 
      
 219 
     | 
    
         
            +
                    #477\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/628\",\"name\":\"1
         
     | 
| 
      
 220 
     | 
    
         
            +
                    of 1 - Holiday Issue\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/630\",\"name\":\"1
         
     | 
| 
      
 221 
     | 
    
         
            +
                    of 5 - Golgotha\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/652\",\"name\":\"2
         
     | 
| 
      
 222 
     | 
    
         
            +
                    of 3 - House of Broken Dreams\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 223 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1415\",\"name\":\"Interior
         
     | 
| 
      
 224 
     | 
    
         
            +
                    #1415\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1499\",\"name\":\"Interior
         
     | 
| 
      
 225 
     | 
    
         
            +
                    #1499\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1632\",\"name\":\"Interior
         
     | 
| 
      
 226 
     | 
    
         
            +
                    #1632\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1767\",\"name\":\"Interior
         
     | 
| 
      
 227 
     | 
    
         
            +
                    #1767\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1776\",\"name\":\"Cover
         
     | 
| 
      
 228 
     | 
    
         
            +
                    #1776\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1779\",\"name\":\"Interior
         
     | 
| 
      
 229 
     | 
    
         
            +
                    #1779\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1803\",\"name\":\"Interior
         
     | 
| 
      
 230 
     | 
    
         
            +
                    #1803\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1847\",\"name\":\"Interior
         
     | 
| 
      
 231 
     | 
    
         
            +
                    #1847\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1912\",\"name\":\"Interior
         
     | 
| 
      
 232 
     | 
    
         
            +
                    #1912\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1936\",\"name\":\"4
         
     | 
| 
      
 233 
     | 
    
         
            +
                    of 5 - Quiet\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1979\",\"name\":\"Interior
         
     | 
| 
      
 234 
     | 
    
         
            +
                    #1979\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2070\",\"name\":\"Interior
         
     | 
| 
      
 235 
     | 
    
         
            +
                    #2070\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2084\",\"name\":\"Interior
         
     | 
| 
      
 236 
     | 
    
         
            +
                    #2084\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2154\",\"name\":\"3
         
     | 
| 
      
 237 
     | 
    
         
            +
                    of 6 - Enemy of the State\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2167\",\"name\":\"Interior
         
     | 
| 
      
 238 
     | 
    
         
            +
                    #2167\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":32,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 239 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
         
     | 
| 
      
 240 
     | 
    
         
            +
                    of Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 241 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 242 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 243 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 244 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 245 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
         
     | 
| 
      
 246 
     | 
    
         
            +
                    of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 247 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
         
     | 
| 
      
 248 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 249 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 250 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 251 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 252 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 253 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 254 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 255 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
         
     | 
| 
      
 256 
     | 
    
         
            +
                    CompleX\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/298\",\"name\":\"Messiah
         
     | 
| 
      
 257 
     | 
    
         
            +
                    War\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009718/wolverine?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Wolverine_(James_Howlett)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 258 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 259 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 260 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 261 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 262 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters/1009368?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 263 
     | 
    
         
            +
                body:
         
     | 
| 
      
 264 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 265 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 266 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 267 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 268 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 269 
     | 
    
         
            +
              response:
         
     | 
| 
      
 270 
     | 
    
         
            +
                status:
         
     | 
| 
      
 271 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 272 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 273 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 274 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 275 
     | 
    
         
            +
                  - 9136df01117259873ae9170236f2dbeb890de915
         
     | 
| 
      
 276 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 277 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 278 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 279 
     | 
    
         
            +
                  - '10277'
         
     | 
| 
      
 280 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 281 
     | 
    
         
            +
                  - Mon, 10 Feb 2014 19:10:16 GMT
         
     | 
| 
      
 282 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 283 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 284 
     | 
    
         
            +
                body:
         
     | 
| 
      
 285 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 286 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9136df01117259873ae9170236f2dbeb890de915\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009368,\"name\":\"Iron
         
     | 
| 
      
 287 
     | 
    
         
            +
                    Man\",\"description\":\"Wounded, captured and forced to build a weapon by
         
     | 
| 
      
 288 
     | 
    
         
            +
                    his enemies, billionaire industrialist Tony Stark instead created an advanced
         
     | 
| 
      
 289 
     | 
    
         
            +
                    suit of armor to save his life and escape captivity. Now with a new outlook
         
     | 
| 
      
 290 
     | 
    
         
            +
                    on life, Tony uses his money and intelligence to make the world a safer, better
         
     | 
| 
      
 291 
     | 
    
         
            +
                    place as Iron Man.\",\"modified\":\"2013-11-07T10:55:38-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/527bb7b37ff55\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"comics\":{\"available\":2027,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24348\",\"name\":\"Adam:
         
     | 
| 
      
 292 
     | 
    
         
            +
                    Legend of the Blue Marvel (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22461\",\"name\":\"Adam:
         
     | 
| 
      
 293 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22856\",\"name\":\"Adam:
         
     | 
| 
      
 294 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
         
     | 
| 
      
 295 
     | 
    
         
            +
                    of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21280\",\"name\":\"All-New
         
     | 
| 
      
 296 
     | 
    
         
            +
                    Iron Manual (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 297 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
         
     | 
| 
      
 298 
     | 
    
         
            +
                    Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 300 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 301 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 302 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 303 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35532\",\"name\":\"Amazing
         
     | 
| 
      
 304 
     | 
    
         
            +
                    Spider-Man (1999) #668\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22433\",\"name\":\"Annihilation
         
     | 
| 
      
 305 
     | 
    
         
            +
                    Classic (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39896\",\"name\":\"Art
         
     | 
| 
      
 306 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31210\",\"name\":\"Astonishing
         
     | 
| 
      
 307 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36441\",\"name\":\"Astonishing
         
     | 
| 
      
 308 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31211\",\"name\":\"Astonishing
         
     | 
| 
      
 309 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (FOILOGRAM VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36616\",\"name\":\"Astonishing
         
     | 
| 
      
 310 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31219\",\"name\":\"Astonishing
         
     | 
| 
      
 311 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #2\"}],\"returned\":20},\"series\":{\"available\":443,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7524\",\"name\":\"Adam:
         
     | 
| 
      
 312 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6079\",\"name\":\"Adam:
         
     | 
| 
      
 313 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
         
     | 
| 
      
 314 
     | 
    
         
            +
                    of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4897\",\"name\":\"All-New
         
     | 
| 
      
 315 
     | 
    
         
            +
                    Iron Manual (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 316 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 317 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6056\",\"name\":\"Annihilation
         
     | 
| 
      
 318 
     | 
    
         
            +
                    Classic (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14779\",\"name\":\"Art
         
     | 
| 
      
 319 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 320 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 321 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6697\",\"name\":\"Astonishing
         
     | 
| 
      
 322 
     | 
    
         
            +
                    Tales: Iron Man 2020 (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6698\",\"name\":\"Astonishing
         
     | 
| 
      
 323 
     | 
    
         
            +
                    Tales: One Shots (Iron Man) (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 324 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 325 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 326 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 327 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 328 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 329 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
         
     | 
| 
      
 330 
     | 
    
         
            +
                    (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 331 
     | 
    
         
            +
                    Academy (2010 - 2012)\"}],\"returned\":20},\"stories\":{\"available\":2885,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/892\",\"name\":\"Cover
         
     | 
| 
      
 332 
     | 
    
         
            +
                    #892\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 333 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/982\",\"name\":\"Interior
         
     | 
| 
      
 334 
     | 
    
         
            +
                    #982\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/984\",\"name\":\"Interior
         
     | 
| 
      
 335 
     | 
    
         
            +
                    #984\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/986\",\"name\":\"Interior
         
     | 
| 
      
 336 
     | 
    
         
            +
                    #986\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/988\",\"name\":\"Interior
         
     | 
| 
      
 337 
     | 
    
         
            +
                    #988\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/990\",\"name\":\"Interior
         
     | 
| 
      
 338 
     | 
    
         
            +
                    #990\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/992\",\"name\":\"Interior
         
     | 
| 
      
 339 
     | 
    
         
            +
                    #992\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/994\",\"name\":\"Interior
         
     | 
| 
      
 340 
     | 
    
         
            +
                    #994\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/996\",\"name\":\"Interior
         
     | 
| 
      
 341 
     | 
    
         
            +
                    #996\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/998\",\"name\":\"Interior
         
     | 
| 
      
 342 
     | 
    
         
            +
                    #998\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1000\",\"name\":\"Interior
         
     | 
| 
      
 343 
     | 
    
         
            +
                    #1000\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1002\",\"name\":\"AVENGERS
         
     | 
| 
      
 344 
     | 
    
         
            +
                    DISASSEMBLED TIE-IN! Still reeling from recent traumas, Iron Man must face
         
     | 
| 
      
 345 
     | 
    
         
            +
                    off against his evil doppelganger. Meanwhile\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1004\",\"name\":\"\\\"THE
         
     | 
| 
      
 346 
     | 
    
         
            +
                    SINGULARITY\\\" CONCLUSION! PART 4 (OF 4) The battle rages on between Iron
         
     | 
| 
      
 347 
     | 
    
         
            +
                    Man and his doppelganger, but only one of them can \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1041\",\"name\":\"Avengers
         
     | 
| 
      
 348 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 349 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1186\",\"name\":\"2
         
     | 
| 
      
 350 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1188\",\"name\":\"3
         
     | 
| 
      
 351 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1189\",\"name\":\"1
         
     | 
| 
      
 352 
     | 
    
         
            +
                    of 6 - The War at Home\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1191\",\"name\":\"2
         
     | 
| 
      
 353 
     | 
    
         
            +
                    of 6 - Spider-Man: The War at Home\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 354 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 355 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/231\",\"name\":\"Armor
         
     | 
| 
      
 356 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 357 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/234\",\"name\":\"Avengers
         
     | 
| 
      
 358 
     | 
    
         
            +
                    Disassembled\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 359 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 360 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 361 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/239\",\"name\":\"Crossing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 362 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 363 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 364 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 365 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 366 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 367 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 368 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 369 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 370 
     | 
    
         
            +
                    Wars\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009368/iron_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Iron_Man_(Anthony_Stark)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 371 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 372 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 373 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 374 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 375 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/150/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 376 
     | 
    
         
            +
                body:
         
     | 
| 
      
 377 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 378 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 379 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 380 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 381 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 382 
     | 
    
         
            +
              response:
         
     | 
| 
      
 383 
     | 
    
         
            +
                status:
         
     | 
| 
      
 384 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 385 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 386 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 387 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 388 
     | 
    
         
            +
                  - e5067566ebc5ce67620d3c8f0ee832ad1643a5c4
         
     | 
| 
      
 389 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 390 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 391 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 392 
     | 
    
         
            +
                  - '28259'
         
     | 
| 
      
 393 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 394 
     | 
    
         
            +
                  - Mon, 10 Feb 2014 19:10:17 GMT
         
     | 
| 
      
 395 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 396 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 397 
     | 
    
         
            +
                body:
         
     | 
| 
      
 398 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 399 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"e5067566ebc5ce67620d3c8f0ee832ad1643a5c4\",\"data\":{\"offset\":0,\"limit\":20,\"total\":3,\"count\":3,\"results\":[{\"id\":1009144,\"name\":\"A.I.M.\",\"description\":\"AIM
         
     | 
| 
      
 400 
     | 
    
         
            +
                    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
         
     | 
| 
      
 401 
     | 
    
         
            +
                    & the Wasp (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17553\",\"name\":\"Avengers
         
     | 
| 
      
 402 
     | 
    
         
            +
                    (1998) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7340\",\"name\":\"Avengers
         
     | 
| 
      
 403 
     | 
    
         
            +
                    (1963) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1170\",\"name\":\"Avengers
         
     | 
| 
      
 404 
     | 
    
         
            +
                    Vol. 2: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1214\",\"name\":\"Avengers
         
     | 
| 
      
 405 
     | 
    
         
            +
                    Vol. II: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12787\",\"name\":\"Captain
         
     | 
| 
      
 406 
     | 
    
         
            +
                    America (1998) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20367\",\"name\":\"Defenders
         
     | 
| 
      
 407 
     | 
    
         
            +
                    (1972) #57\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31068\",\"name\":\"Incredible
         
     | 
| 
      
 408 
     | 
    
         
            +
                    Hulks (2009) #606 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36737\",\"name\":\"Marvel
         
     | 
| 
      
 409 
     | 
    
         
            +
                    Adventures Super Heroes (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2110\",\"name\":\"Marvel
         
     | 
| 
      
 410 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1130\",\"name\":\"Marvel
         
     | 
| 
      
 411 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2319\",\"name\":\"Marvel
         
     | 
| 
      
 412 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2820\",\"name\":\"Marvel
         
     | 
| 
      
 413 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2001\",\"name\":\"Marvel
         
     | 
| 
      
 414 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17468\",\"name\":\"Marvel
         
     | 
| 
      
 415 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1164\",\"name\":\"Marvel
         
     | 
| 
      
 416 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11068\",\"name\":\"Strange
         
     | 
| 
      
 417 
     | 
    
         
            +
                    Tales (1951) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11069\",\"name\":\"Strange
         
     | 
| 
      
 418 
     | 
    
         
            +
                    Tales (1951) #147\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11070\",\"name\":\"Strange
         
     | 
| 
      
 419 
     | 
    
         
            +
                    Tales (1951) #148\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11324\",\"name\":\"Tales
         
     | 
| 
      
 420 
     | 
    
         
            +
                    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
         
     | 
| 
      
 421 
     | 
    
         
            +
                    & the Wasp (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 422 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 423 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/227\",\"name\":\"Avengers
         
     | 
| 
      
 424 
     | 
    
         
            +
                    Vol. 2: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/271\",\"name\":\"Avengers
         
     | 
| 
      
 425 
     | 
    
         
            +
                    Vol. II: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
         
     | 
| 
      
 426 
     | 
    
         
            +
                    America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3743\",\"name\":\"Defenders
         
     | 
| 
      
 427 
     | 
    
         
            +
                    (1972 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
         
     | 
| 
      
 428 
     | 
    
         
            +
                    Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9718\",\"name\":\"Marvel
         
     | 
| 
      
 429 
     | 
    
         
            +
                    Adventures Super Heroes (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1506\",\"name\":\"Marvel
         
     | 
| 
      
 430 
     | 
    
         
            +
                    Masterworks: Captain America Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/189\",\"name\":\"Marvel
         
     | 
| 
      
 431 
     | 
    
         
            +
                    Masterworks: Captain America Vol. 1 - 2nd Edition (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1468\",\"name\":\"Marvel
         
     | 
| 
      
 432 
     | 
    
         
            +
                    Masterworks: Doctor Strange Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1494\",\"name\":\"Marvel
         
     | 
| 
      
 433 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3300\",\"name\":\"Marvel
         
     | 
| 
      
 434 
     | 
    
         
            +
                    Masterworks: The Invincible Iron Man Vol. 1 (0000 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/222\",\"name\":\"Marvel
         
     | 
| 
      
 435 
     | 
    
         
            +
                    Masterworks: The Silver Surfer Vol. 2 (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2076\",\"name\":\"Strange
         
     | 
| 
      
 436 
     | 
    
         
            +
                    Tales (1951 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2079\",\"name\":\"Tales
         
     | 
| 
      
 437 
     | 
    
         
            +
                    of Suspense (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2725\",\"name\":\"Tales
         
     | 
| 
      
 438 
     | 
    
         
            +
                    of Suspsnse Transport (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13213\",\"name\":\"Taskmaster
         
     | 
| 
      
 439 
     | 
    
         
            +
                    (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
         
     | 
| 
      
 440 
     | 
    
         
            +
                    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
         
     | 
| 
      
 441 
     | 
    
         
            +
                    the Unliving Strike\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10255\",\"name\":\"Cover
         
     | 
| 
      
 442 
     | 
    
         
            +
                    #10255\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10256\",\"name\":\"The
         
     | 
| 
      
 443 
     | 
    
         
            +
                    Enemy Within!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10259\",\"name\":\"Death
         
     | 
| 
      
 444 
     | 
    
         
            +
                    Before Dishonor!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10261\",\"name\":\"Cover
         
     | 
| 
      
 445 
     | 
    
         
            +
                    #10261\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10262\",\"name\":\"The
         
     | 
| 
      
 446 
     | 
    
         
            +
                    End of A.I.M.!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11921\",\"name\":\"The
         
     | 
| 
      
 447 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11930\",\"name\":\"He
         
     | 
| 
      
 448 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11936\",\"name\":\"The
         
     | 
| 
      
 449 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11981\",\"name\":\"If
         
     | 
| 
      
 450 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11984\",\"name\":\"A
         
     | 
| 
      
 451 
     | 
    
         
            +
                    Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11995\",\"name\":\"At
         
     | 
| 
      
 452 
     | 
    
         
            +
                    the Mercy of the Maggia\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15243\",\"name\":\"Look
         
     | 
| 
      
 453 
     | 
    
         
            +
                    Homeward, Avenger\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28233\",\"name\":\"In
         
     | 
| 
      
 454 
     | 
    
         
            +
                    Sin Airy X\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28971\",\"name\":\"[The
         
     | 
| 
      
 455 
     | 
    
         
            +
                    Brothers Part I]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34426\",\"name\":\"The
         
     | 
| 
      
 456 
     | 
    
         
            +
                    Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34435\",\"name\":\"He
         
     | 
| 
      
 457 
     | 
    
         
            +
                    Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34441\",\"name\":\"The
         
     | 
| 
      
 458 
     | 
    
         
            +
                    Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34486\",\"name\":\"If
         
     | 
| 
      
 459 
     | 
    
         
            +
                    This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34489\",\"name\":\"A
         
     | 
| 
      
 460 
     | 
    
         
            +
                    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\":1009368,\"name\":\"Iron
         
     | 
| 
      
 461 
     | 
    
         
            +
                    Man\",\"description\":\"Wounded, captured and forced to build a weapon by
         
     | 
| 
      
 462 
     | 
    
         
            +
                    his enemies, billionaire industrialist Tony Stark instead created an advanced
         
     | 
| 
      
 463 
     | 
    
         
            +
                    suit of armor to save his life and escape captivity. Now with a new outlook
         
     | 
| 
      
 464 
     | 
    
         
            +
                    on life, Tony uses his money and intelligence to make the world a safer, better
         
     | 
| 
      
 465 
     | 
    
         
            +
                    place as Iron Man.\",\"modified\":\"2013-11-07T10:55:38-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/527bb7b37ff55\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"comics\":{\"available\":2027,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24348\",\"name\":\"Adam:
         
     | 
| 
      
 466 
     | 
    
         
            +
                    Legend of the Blue Marvel (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22461\",\"name\":\"Adam:
         
     | 
| 
      
 467 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22856\",\"name\":\"Adam:
         
     | 
| 
      
 468 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
         
     | 
| 
      
 469 
     | 
    
         
            +
                    of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21280\",\"name\":\"All-New
         
     | 
| 
      
 470 
     | 
    
         
            +
                    Iron Manual (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 471 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
         
     | 
| 
      
 472 
     | 
    
         
            +
                    Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 473 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 474 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 475 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 476 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 477 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35532\",\"name\":\"Amazing
         
     | 
| 
      
 478 
     | 
    
         
            +
                    Spider-Man (1999) #668\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22433\",\"name\":\"Annihilation
         
     | 
| 
      
 479 
     | 
    
         
            +
                    Classic (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39896\",\"name\":\"Art
         
     | 
| 
      
 480 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31210\",\"name\":\"Astonishing
         
     | 
| 
      
 481 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31211\",\"name\":\"Astonishing
         
     | 
| 
      
 482 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (FOILOGRAM VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36616\",\"name\":\"Astonishing
         
     | 
| 
      
 483 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36441\",\"name\":\"Astonishing
         
     | 
| 
      
 484 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31219\",\"name\":\"Astonishing
         
     | 
| 
      
 485 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #2\"}],\"returned\":20},\"series\":{\"available\":443,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7524\",\"name\":\"Adam:
         
     | 
| 
      
 486 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6079\",\"name\":\"Adam:
         
     | 
| 
      
 487 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
         
     | 
| 
      
 488 
     | 
    
         
            +
                    of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4897\",\"name\":\"All-New
         
     | 
| 
      
 489 
     | 
    
         
            +
                    Iron Manual (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 490 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 491 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6056\",\"name\":\"Annihilation
         
     | 
| 
      
 492 
     | 
    
         
            +
                    Classic (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14779\",\"name\":\"Art
         
     | 
| 
      
 493 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 494 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 495 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6697\",\"name\":\"Astonishing
         
     | 
| 
      
 496 
     | 
    
         
            +
                    Tales: Iron Man 2020 (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6698\",\"name\":\"Astonishing
         
     | 
| 
      
 497 
     | 
    
         
            +
                    Tales: One Shots (Iron Man) (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 498 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 499 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 500 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 501 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 502 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 503 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
         
     | 
| 
      
 504 
     | 
    
         
            +
                    (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 505 
     | 
    
         
            +
                    Academy (2010 - 2012)\"}],\"returned\":20},\"stories\":{\"available\":2885,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/892\",\"name\":\"Cover
         
     | 
| 
      
 506 
     | 
    
         
            +
                    #892\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 507 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/982\",\"name\":\"Interior
         
     | 
| 
      
 508 
     | 
    
         
            +
                    #982\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/984\",\"name\":\"Interior
         
     | 
| 
      
 509 
     | 
    
         
            +
                    #984\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/986\",\"name\":\"Interior
         
     | 
| 
      
 510 
     | 
    
         
            +
                    #986\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/988\",\"name\":\"Interior
         
     | 
| 
      
 511 
     | 
    
         
            +
                    #988\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/990\",\"name\":\"Interior
         
     | 
| 
      
 512 
     | 
    
         
            +
                    #990\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/992\",\"name\":\"Interior
         
     | 
| 
      
 513 
     | 
    
         
            +
                    #992\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/994\",\"name\":\"Interior
         
     | 
| 
      
 514 
     | 
    
         
            +
                    #994\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/996\",\"name\":\"Interior
         
     | 
| 
      
 515 
     | 
    
         
            +
                    #996\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/998\",\"name\":\"Interior
         
     | 
| 
      
 516 
     | 
    
         
            +
                    #998\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1000\",\"name\":\"Interior
         
     | 
| 
      
 517 
     | 
    
         
            +
                    #1000\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1002\",\"name\":\"AVENGERS
         
     | 
| 
      
 518 
     | 
    
         
            +
                    DISASSEMBLED TIE-IN! Still reeling from recent traumas, Iron Man must face
         
     | 
| 
      
 519 
     | 
    
         
            +
                    off against his evil doppelganger. Meanwhile\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1004\",\"name\":\"\\\"THE
         
     | 
| 
      
 520 
     | 
    
         
            +
                    SINGULARITY\\\" CONCLUSION! PART 4 (OF 4) The battle rages on between Iron
         
     | 
| 
      
 521 
     | 
    
         
            +
                    Man and his doppelganger, but only one of them can \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1041\",\"name\":\"Avengers
         
     | 
| 
      
 522 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 523 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1186\",\"name\":\"2
         
     | 
| 
      
 524 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1188\",\"name\":\"3
         
     | 
| 
      
 525 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1189\",\"name\":\"1
         
     | 
| 
      
 526 
     | 
    
         
            +
                    of 6 - The War at Home\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1191\",\"name\":\"2
         
     | 
| 
      
 527 
     | 
    
         
            +
                    of 6 - Spider-Man: The War at Home\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 528 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 529 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/231\",\"name\":\"Armor
         
     | 
| 
      
 530 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 531 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/234\",\"name\":\"Avengers
         
     | 
| 
      
 532 
     | 
    
         
            +
                    Disassembled\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 533 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 534 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 535 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/239\",\"name\":\"Crossing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 536 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 537 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 538 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 539 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 540 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 541 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 542 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 543 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 544 
     | 
    
         
            +
                    Wars\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009368/iron_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Iron_Man_(Anthony_Stark)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009718,\"name\":\"Wolverine\",\"description\":\"Born
         
     | 
| 
      
 545 
     | 
    
         
            +
                    with super-human senses and the power to heal from almost any wound, Wolverine
         
     | 
| 
      
 546 
     | 
    
         
            +
                    was captured by a secret Canadian organization and given an unbreakable skeleton
         
     | 
| 
      
 547 
     | 
    
         
            +
                    and claws. Treated like an animal, it took years for him to control himself.
         
     | 
| 
      
 548 
     | 
    
         
            +
                    Now, he's a premiere member of both the X-Men and the Avengers.\",\"modified\":\"2013-11-20T17:40:18-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/00/528d3a1eb24ee\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"comics\":{\"available\":1793,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41112\",\"name\":\"5
         
     | 
| 
      
 549 
     | 
    
         
            +
                    Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41113\",\"name\":\"5
         
     | 
| 
      
 550 
     | 
    
         
            +
                    Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38756\",\"name\":\"5
         
     | 
| 
      
 551 
     | 
    
         
            +
                    Ronin (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36162\",\"name\":\"5
         
     | 
| 
      
 552 
     | 
    
         
            +
                    Ronin (2010) #1 (AJA Cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29317\",\"name\":\"ACTS
         
     | 
| 
      
 553 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29318\",\"name\":\"ACTS
         
     | 
| 
      
 554 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24017\",\"name\":\"Agents
         
     | 
| 
      
 555 
     | 
    
         
            +
                    of Atlas (2009) #3 (Wolverine Art Appreciation Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24221\",\"name\":\"Agents
         
     | 
| 
      
 556 
     | 
    
         
            +
                    of Atlas (2009) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24222\",\"name\":\"Agents
         
     | 
| 
      
 557 
     | 
    
         
            +
                    of Atlas (2009) #5 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12690\",\"name\":\"Alpha
         
     | 
| 
      
 558 
     | 
    
         
            +
                    Flight (1983) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12671\",\"name\":\"Alpha
         
     | 
| 
      
 559 
     | 
    
         
            +
                    Flight (1983) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12675\",\"name\":\"Alpha
         
     | 
| 
      
 560 
     | 
    
         
            +
                    Flight (1983) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12676\",\"name\":\"Alpha
         
     | 
| 
      
 561 
     | 
    
         
            +
                    Flight (1983) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12694\",\"name\":\"Alpha
         
     | 
| 
      
 562 
     | 
    
         
            +
                    Flight (1983) #33\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12695\",\"name\":\"Alpha
         
     | 
| 
      
 563 
     | 
    
         
            +
                    Flight (1983) #34\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12715\",\"name\":\"Alpha
         
     | 
| 
      
 564 
     | 
    
         
            +
                    Flight (1983) #52\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12716\",\"name\":\"Alpha
         
     | 
| 
      
 565 
     | 
    
         
            +
                    Flight (1983) #53\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12725\",\"name\":\"Alpha
         
     | 
| 
      
 566 
     | 
    
         
            +
                    Flight (1983) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12753\",\"name\":\"Alpha
         
     | 
| 
      
 567 
     | 
    
         
            +
                    Flight (1983) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12754\",\"name\":\"Alpha
         
     | 
| 
      
 568 
     | 
    
         
            +
                    Flight (1983) #88\"}],\"returned\":20},\"series\":{\"available\":435,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15276\",\"name\":\"5
         
     | 
| 
      
 569 
     | 
    
         
            +
                    Ronin (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12429\",\"name\":\"5
         
     | 
| 
      
 570 
     | 
    
         
            +
                    Ronin (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9994\",\"name\":\"ACTS
         
     | 
| 
      
 571 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9995\",\"name\":\"ACTS
         
     | 
| 
      
 572 
     | 
    
         
            +
                    OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6807\",\"name\":\"Agents
         
     | 
| 
      
 573 
     | 
    
         
            +
                    of Atlas (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 574 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1983\",\"name\":\"Alpha
         
     | 
| 
      
 575 
     | 
    
         
            +
                    Flight Classic Vol. 1 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"name\":\"Amazing
         
     | 
| 
      
 576 
     | 
    
         
            +
                    Spider-Man (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 577 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2984\",\"name\":\"Amazing
         
     | 
| 
      
 578 
     | 
    
         
            +
                    Spider-Man Annual (1964 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7197\",\"name\":\"Anita
         
     | 
| 
      
 579 
     | 
    
         
            +
                    Blake: The Laughing Corpse - Necromancer (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14818\",\"name\":\"Annihilators:
         
     | 
| 
      
 580 
     | 
    
         
            +
                    Earthfall (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11110\",\"name\":\"Astonishing
         
     | 
| 
      
 581 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 582 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 583 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 584 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 585 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 586 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1464\",\"name\":\"Astonishing
         
     | 
| 
      
 587 
     | 
    
         
            +
                    X-Men Vol. 1 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1298\",\"name\":\"Astonishing
         
     | 
| 
      
 588 
     | 
    
         
            +
                    X-Men Vol. 1: Gifted (2004)\"}],\"returned\":20},\"stories\":{\"available\":2444,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/477\",\"name\":\"Cover
         
     | 
| 
      
 589 
     | 
    
         
            +
                    #477\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/628\",\"name\":\"1
         
     | 
| 
      
 590 
     | 
    
         
            +
                    of 1 - Holiday Issue\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/630\",\"name\":\"1
         
     | 
| 
      
 591 
     | 
    
         
            +
                    of 5 - Golgotha\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/652\",\"name\":\"2
         
     | 
| 
      
 592 
     | 
    
         
            +
                    of 3 - House of Broken Dreams\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 593 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1415\",\"name\":\"Interior
         
     | 
| 
      
 594 
     | 
    
         
            +
                    #1415\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1499\",\"name\":\"Interior
         
     | 
| 
      
 595 
     | 
    
         
            +
                    #1499\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1632\",\"name\":\"Interior
         
     | 
| 
      
 596 
     | 
    
         
            +
                    #1632\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1767\",\"name\":\"Interior
         
     | 
| 
      
 597 
     | 
    
         
            +
                    #1767\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1776\",\"name\":\"Cover
         
     | 
| 
      
 598 
     | 
    
         
            +
                    #1776\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1779\",\"name\":\"Interior
         
     | 
| 
      
 599 
     | 
    
         
            +
                    #1779\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1803\",\"name\":\"Interior
         
     | 
| 
      
 600 
     | 
    
         
            +
                    #1803\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1847\",\"name\":\"Interior
         
     | 
| 
      
 601 
     | 
    
         
            +
                    #1847\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1912\",\"name\":\"Interior
         
     | 
| 
      
 602 
     | 
    
         
            +
                    #1912\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1936\",\"name\":\"4
         
     | 
| 
      
 603 
     | 
    
         
            +
                    of 5 - Quiet\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1979\",\"name\":\"Interior
         
     | 
| 
      
 604 
     | 
    
         
            +
                    #1979\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2070\",\"name\":\"Interior
         
     | 
| 
      
 605 
     | 
    
         
            +
                    #2070\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2084\",\"name\":\"Interior
         
     | 
| 
      
 606 
     | 
    
         
            +
                    #2084\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2154\",\"name\":\"3
         
     | 
| 
      
 607 
     | 
    
         
            +
                    of 6 - Enemy of the State\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2167\",\"name\":\"Interior
         
     | 
| 
      
 608 
     | 
    
         
            +
                    #2167\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":32,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009718/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 609 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
         
     | 
| 
      
 610 
     | 
    
         
            +
                    of Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 611 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 612 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 613 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 614 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 615 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
         
     | 
| 
      
 616 
     | 
    
         
            +
                    of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 617 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
         
     | 
| 
      
 618 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 619 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 620 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 621 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 622 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 623 
     | 
    
         
            +
                    Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 624 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 625 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
         
     | 
| 
      
 626 
     | 
    
         
            +
                    CompleX\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/298\",\"name\":\"Messiah
         
     | 
| 
      
 627 
     | 
    
         
            +
                    War\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009718/wolverine?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Wolverine_(James_Howlett)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 628 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 629 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 630 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 631 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 632 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters/1009368?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 633 
     | 
    
         
            +
                body:
         
     | 
| 
      
 634 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 635 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 636 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 637 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 638 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 639 
     | 
    
         
            +
              response:
         
     | 
| 
      
 640 
     | 
    
         
            +
                status:
         
     | 
| 
      
 641 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 642 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 643 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 644 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 645 
     | 
    
         
            +
                  - 9136df01117259873ae9170236f2dbeb890de915
         
     | 
| 
      
 646 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 647 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 648 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 649 
     | 
    
         
            +
                  - '10277'
         
     | 
| 
      
 650 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 651 
     | 
    
         
            +
                  - Mon, 10 Feb 2014 19:10:12 GMT
         
     | 
| 
      
 652 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 653 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 654 
     | 
    
         
            +
                body:
         
     | 
| 
      
 655 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 656 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9136df01117259873ae9170236f2dbeb890de915\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009368,\"name\":\"Iron
         
     | 
| 
      
 657 
     | 
    
         
            +
                    Man\",\"description\":\"Wounded, captured and forced to build a weapon by
         
     | 
| 
      
 658 
     | 
    
         
            +
                    his enemies, billionaire industrialist Tony Stark instead created an advanced
         
     | 
| 
      
 659 
     | 
    
         
            +
                    suit of armor to save his life and escape captivity. Now with a new outlook
         
     | 
| 
      
 660 
     | 
    
         
            +
                    on life, Tony uses his money and intelligence to make the world a safer, better
         
     | 
| 
      
 661 
     | 
    
         
            +
                    place as Iron Man.\",\"modified\":\"2013-11-07T10:55:38-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/c0/527bb7b37ff55\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"comics\":{\"available\":2027,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24348\",\"name\":\"Adam:
         
     | 
| 
      
 662 
     | 
    
         
            +
                    Legend of the Blue Marvel (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22461\",\"name\":\"Adam:
         
     | 
| 
      
 663 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22856\",\"name\":\"Adam:
         
     | 
| 
      
 664 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
         
     | 
| 
      
 665 
     | 
    
         
            +
                    of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21280\",\"name\":\"All-New
         
     | 
| 
      
 666 
     | 
    
         
            +
                    Iron Manual (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12653\",\"name\":\"Alpha
         
     | 
| 
      
 667 
     | 
    
         
            +
                    Flight (1983) #113\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
         
     | 
| 
      
 668 
     | 
    
         
            +
                    Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 669 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 670 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 671 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 672 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 673 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35532\",\"name\":\"Amazing
         
     | 
| 
      
 674 
     | 
    
         
            +
                    Spider-Man (1999) #668\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22433\",\"name\":\"Annihilation
         
     | 
| 
      
 675 
     | 
    
         
            +
                    Classic (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39896\",\"name\":\"Art
         
     | 
| 
      
 676 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31210\",\"name\":\"Astonishing
         
     | 
| 
      
 677 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36441\",\"name\":\"Astonishing
         
     | 
| 
      
 678 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31211\",\"name\":\"Astonishing
         
     | 
| 
      
 679 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (FOILOGRAM VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36616\",\"name\":\"Astonishing
         
     | 
| 
      
 680 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31219\",\"name\":\"Astonishing
         
     | 
| 
      
 681 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010) #2\"}],\"returned\":20},\"series\":{\"available\":443,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7524\",\"name\":\"Adam:
         
     | 
| 
      
 682 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6079\",\"name\":\"Adam:
         
     | 
| 
      
 683 
     | 
    
         
            +
                    Legend of the Blue Marvel (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
         
     | 
| 
      
 684 
     | 
    
         
            +
                    of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4897\",\"name\":\"All-New
         
     | 
| 
      
 685 
     | 
    
         
            +
                    Iron Manual (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
         
     | 
| 
      
 686 
     | 
    
         
            +
                    Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 687 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6056\",\"name\":\"Annihilation
         
     | 
| 
      
 688 
     | 
    
         
            +
                    Classic (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14779\",\"name\":\"Art
         
     | 
| 
      
 689 
     | 
    
         
            +
                    of Marvel Studios TPB Slipcase (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9792\",\"name\":\"Astonishing
         
     | 
| 
      
 690 
     | 
    
         
            +
                    Spider-Man/Wolverine (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6792\",\"name\":\"Astonishing
         
     | 
| 
      
 691 
     | 
    
         
            +
                    Tales (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6697\",\"name\":\"Astonishing
         
     | 
| 
      
 692 
     | 
    
         
            +
                    Tales: Iron Man 2020 (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6698\",\"name\":\"Astonishing
         
     | 
| 
      
 693 
     | 
    
         
            +
                    Tales: One Shots (Iron Man) (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6696\",\"name\":\"Astonishing
         
     | 
| 
      
 694 
     | 
    
         
            +
                    Tales: Wolverine/Punisher (2008 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
         
     | 
| 
      
 695 
     | 
    
         
            +
                    X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
         
     | 
| 
      
 696 
     | 
    
         
            +
                    X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
         
     | 
| 
      
 697 
     | 
    
         
            +
                    (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 698 
     | 
    
         
            +
                    (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
         
     | 
| 
      
 699 
     | 
    
         
            +
                    (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
         
     | 
| 
      
 700 
     | 
    
         
            +
                    (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
         
     | 
| 
      
 701 
     | 
    
         
            +
                    Academy (2010 - 2012)\"}],\"returned\":20},\"stories\":{\"available\":2885,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/892\",\"name\":\"Cover
         
     | 
| 
      
 702 
     | 
    
         
            +
                    #892\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 703 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/982\",\"name\":\"Interior
         
     | 
| 
      
 704 
     | 
    
         
            +
                    #982\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/984\",\"name\":\"Interior
         
     | 
| 
      
 705 
     | 
    
         
            +
                    #984\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/986\",\"name\":\"Interior
         
     | 
| 
      
 706 
     | 
    
         
            +
                    #986\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/988\",\"name\":\"Interior
         
     | 
| 
      
 707 
     | 
    
         
            +
                    #988\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/990\",\"name\":\"Interior
         
     | 
| 
      
 708 
     | 
    
         
            +
                    #990\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/992\",\"name\":\"Interior
         
     | 
| 
      
 709 
     | 
    
         
            +
                    #992\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/994\",\"name\":\"Interior
         
     | 
| 
      
 710 
     | 
    
         
            +
                    #994\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/996\",\"name\":\"Interior
         
     | 
| 
      
 711 
     | 
    
         
            +
                    #996\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/998\",\"name\":\"Interior
         
     | 
| 
      
 712 
     | 
    
         
            +
                    #998\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1000\",\"name\":\"Interior
         
     | 
| 
      
 713 
     | 
    
         
            +
                    #1000\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1002\",\"name\":\"AVENGERS
         
     | 
| 
      
 714 
     | 
    
         
            +
                    DISASSEMBLED TIE-IN! Still reeling from recent traumas, Iron Man must face
         
     | 
| 
      
 715 
     | 
    
         
            +
                    off against his evil doppelganger. Meanwhile\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1004\",\"name\":\"\\\"THE
         
     | 
| 
      
 716 
     | 
    
         
            +
                    SINGULARITY\\\" CONCLUSION! PART 4 (OF 4) The battle rages on between Iron
         
     | 
| 
      
 717 
     | 
    
         
            +
                    Man and his doppelganger, but only one of them can \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1041\",\"name\":\"Avengers
         
     | 
| 
      
 718 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1051\",\"name\":\"Interior
         
     | 
| 
      
 719 
     | 
    
         
            +
                    #1051\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1186\",\"name\":\"2
         
     | 
| 
      
 720 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1188\",\"name\":\"3
         
     | 
| 
      
 721 
     | 
    
         
            +
                    of 3 - Identity Thief\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1189\",\"name\":\"1
         
     | 
| 
      
 722 
     | 
    
         
            +
                    of 6 - The War at Home\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1191\",\"name\":\"2
         
     | 
| 
      
 723 
     | 
    
         
            +
                    of 6 - Spider-Man: The War at Home\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009368/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 724 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 725 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/231\",\"name\":\"Armor
         
     | 
| 
      
 726 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 727 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/234\",\"name\":\"Avengers
         
     | 
| 
      
 728 
     | 
    
         
            +
                    Disassembled\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 729 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
         
     | 
| 
      
 730 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 731 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/239\",\"name\":\"Crossing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 732 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
         
     | 
| 
      
 733 
     | 
    
         
            +
                    of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 734 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 735 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 736 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
         
     | 
| 
      
 737 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 738 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 739 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 740 
     | 
    
         
            +
                    Wars\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009368/iron_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Iron_Man_(Anthony_Stark)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
         
     | 
| 
      
 741 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 742 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 743 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |