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,31 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/comics/10101/series?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: 404
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: Not Found
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - '177'
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Mon, 10 Feb 2014 20:53:52 GMT
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 25 
     | 
    
         
            +
                body:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 27 
     | 
    
         
            +
                  string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/comics/10101/series?ts=1391894400&apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef
         
     | 
| 
      
 28 
     | 
    
         
            +
                    does not exist\"}"
         
     | 
| 
      
 29 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 30 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 31 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,1104 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/creators/196/series?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 
     | 
    
         
            +
                  - adbb3aaa4488eb33e3b984b580a6dda4e90c30b1
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '129588'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:31:06 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"adbb3aaa4488eb33e3b984b580a6dda4e90c30b1\",\"data\":{\"offset\":0,\"limit\":20,\"total\":337,\"count\":20,\"results\":[{\"id\":2114,\"title\":\"All-Winners
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Comics (1941 - 1947)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2114\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2114/all-winners_comics_1941_-_1947?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1941,\"endYear\":1947,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/80/4bad38841d376\",\"extension\":\"jpg\"},\"creators\":{\"available\":36,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1496\",\"name\":\"Illo\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1452\",\"name\":\"Vince
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Alascia\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1456\",\"name\":\"Jack
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Binder\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1494\",\"name\":\"Al
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Fagaly\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1495\",\"name\":\"Louis
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Ferstadt\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1356\",\"name\":\"John
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Forte\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1439\",\"name\":\"Al
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Gabriele\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1493\",\"name\":\"Chad
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Grothkopf\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1303\",\"name\":\"Paul
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Gustavson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1355\",\"name\":\"Howard
         
     | 
| 
      
 39 
     | 
    
         
            +
                    James\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1489\",\"name\":\"Jack
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Alderman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1358\",\"name\":\"Al
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Avison\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1440\",\"name\":\"Al
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Bellman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1449\",\"name\":\"George
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Klein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1499\",\"name\":\"Otto
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Binder\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/408\",\"name\":\"Carl
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Burgos\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/297\",\"name\":\"Bill
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Everett\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1469\",\"name\":\"Bill
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Finger\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 48 
     | 
    
         
            +
                    Kirby\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1445\",\"name\":\"Vince
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Fago\",\"role\":\"editor\"}],\"returned\":20},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 50 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 51 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011424\",\"name\":\"Miss
         
     | 
| 
      
 52 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009535\",\"name\":\"Red
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Skull\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010740\",\"name\":\"The
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Winter Soldier\"}],\"returned\":7},\"stories\":{\"available\":135,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9053\",\"name\":\"Cover
         
     | 
| 
      
 55 
     | 
    
         
            +
                    #9053\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9054\",\"name\":\"Carnival
         
     | 
| 
      
 56 
     | 
    
         
            +
                    of Fiends\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9055\",\"name\":\"The
         
     | 
| 
      
 57 
     | 
    
         
            +
                    Order of the Hood\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9056\",\"name\":\"The
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Case of the Hollow Men\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9057\",\"name\":\"All
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Winners\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9058\",\"name\":\"[The
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Torpedo Boat Terror]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9059\",\"name\":\"The
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Case of the Mad Gargoyle\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9060\",\"name\":\"Cover
         
     | 
| 
      
 62 
     | 
    
         
            +
                    #9060\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9061\",\"name\":\"Bloody
         
     | 
| 
      
 63 
     | 
    
         
            +
                    Talons of the Feathered Fiends\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9062\",\"name\":\"Kioto,
         
     | 
| 
      
 64 
     | 
    
         
            +
                    the Mad Jap\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9063\",\"name\":\"Alibi
         
     | 
| 
      
 65 
     | 
    
         
            +
                    For Grim Deceit\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9064\",\"name\":\"[The
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Rescue of the Partisan's Sister]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9065\",\"name\":\"The
         
     | 
| 
      
 67 
     | 
    
         
            +
                    Terror of Triple Destruction\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9066\",\"name\":\"Cover
         
     | 
| 
      
 68 
     | 
    
         
            +
                    #9066\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9067\",\"name\":\"Sky
         
     | 
| 
      
 69 
     | 
    
         
            +
                    Demons Over America\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9068\",\"name\":\"The
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Case of the Yellow Fire Monster\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9069\",\"name\":\"Terror
         
     | 
| 
      
 71 
     | 
    
         
            +
                    In Tokyo\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9070\",\"name\":\"Return
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Engagement\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9071\",\"name\":\"[The
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Real Hitler]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9072\",\"name\":\"The
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Mystery of the Ghost Killer\",\"type\":\"\"}],\"returned\":20},\"comics\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12555\",\"name\":\"All-Winners
         
     | 
| 
      
 75 
     | 
    
         
            +
                    Comics (1941) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12566\",\"name\":\"All-Winners
         
     | 
| 
      
 76 
     | 
    
         
            +
                    Comics (1941) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12568\",\"name\":\"All-Winners
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Comics (1941) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12569\",\"name\":\"All-Winners
         
     | 
| 
      
 78 
     | 
    
         
            +
                    Comics (1941) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12570\",\"name\":\"All-Winners
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Comics (1941) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12571\",\"name\":\"All-Winners
         
     | 
| 
      
 80 
     | 
    
         
            +
                    Comics (1941) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12572\",\"name\":\"All-Winners
         
     | 
| 
      
 81 
     | 
    
         
            +
                    Comics (1941) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12573\",\"name\":\"All-Winners
         
     | 
| 
      
 82 
     | 
    
         
            +
                    Comics (1941) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12574\",\"name\":\"All-Winners
         
     | 
| 
      
 83 
     | 
    
         
            +
                    Comics (1941) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12556\",\"name\":\"All-Winners
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Comics (1941) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12557\",\"name\":\"All-Winners
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Comics (1941) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12558\",\"name\":\"All-Winners
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Comics (1941) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12559\",\"name\":\"All-Winners
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Comics (1941) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12560\",\"name\":\"All-Winners
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Comics (1941) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12561\",\"name\":\"All-Winners
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Comics (1941) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12562\",\"name\":\"All-Winners
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Comics (1941) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12563\",\"name\":\"All-Winners
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Comics (1941) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12564\",\"name\":\"All-Winners
         
     | 
| 
      
 92 
     | 
    
         
            +
                    Comics (1941) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12565\",\"name\":\"All-Winners
         
     | 
| 
      
 93 
     | 
    
         
            +
                    Comics (1941) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12567\",\"name\":\"All-Winners
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Comics (1941) #21\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":6666,\"title\":\"Amazing
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Adventures (1970 - 1976)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6666\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/6666/amazing_adventures_1970_-_1976?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1970,\"endYear\":1976,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/50/4bb53ab5bd79f\",\"extension\":\"jpg\"},\"creators\":{\"available\":82,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6666/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2751\",\"name\":\"D.
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Bruce Berry\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 99 
     | 
    
         
            +
                    Buscema\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2151\",\"name\":\"Frank
         
     | 
| 
      
 100 
     | 
    
         
            +
                    Chiaramonte\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/314\",\"name\":\"Neal
         
     | 
| 
      
 101 
     | 
    
         
            +
                    Adams\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/954\",\"name\":\"Gerry
         
     | 
| 
      
 102 
     | 
    
         
            +
                    Conway\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/104\",\"name\":\"Steve
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Englehart\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1216\",\"name\":\"Rich
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Buckler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1612\",\"name\":\"John
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/808\",\"name\":\"Howard
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Chaykin\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/270\",\"name\":\"Gene
         
     | 
| 
      
 107 
     | 
    
         
            +
                    Colan\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/7762\",\"name\":\"Tom
         
     | 
| 
      
 108 
     | 
    
         
            +
                    Cooke\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1261\",\"name\":\"Tony
         
     | 
| 
      
 109 
     | 
    
         
            +
                    Dipreta\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1651\",\"name\":\"Richard
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Doxsee\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1767\",\"name\":\"Janice
         
     | 
| 
      
 112 
     | 
    
         
            +
                    Cohen\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2350\",\"name\":\"Herb
         
     | 
| 
      
 113 
     | 
    
         
            +
                    Cooper\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1746\",\"name\":\"John
         
     | 
| 
      
 114 
     | 
    
         
            +
                    Costanza\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1778\",\"name\":\"Dan
         
     | 
| 
      
 115 
     | 
    
         
            +
                    Crespi\",\"role\":\"letterer\"}],\"returned\":20},\"characters\":{\"available\":10,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6666/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 116 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011490\",\"name\":\"Hank
         
     | 
| 
      
 118 
     | 
    
         
            +
                    Pym\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009365\",\"name\":\"Inhumans\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009382\",\"name\":\"Juggernaut\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011116\",\"name\":\"Killraven\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009434\",\"name\":\"Mastermind\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009687\",\"name\":\"Unus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":10},\"stories\":{\"available\":103,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6666/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51602\",\"name\":\"Beware
         
     | 
| 
      
 119 
     | 
    
         
            +
                    the Inhumans!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51603\",\"name\":\"Beware
         
     | 
| 
      
 120 
     | 
    
         
            +
                    the Inhumans\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51604\",\"name\":\"Then
         
     | 
| 
      
 121 
     | 
    
         
            +
                    Came the Black Widow\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51605\",\"name\":\"Cover
         
     | 
| 
      
 122 
     | 
    
         
            +
                    #51605\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51606\",\"name\":\"Tn
         
     | 
| 
      
 123 
     | 
    
         
            +
                    This Hand, the World\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51607\",\"name\":\"The
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Origin of the Incomparable Inhumans\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51608\",\"name\":\"Cover
         
     | 
| 
      
 125 
     | 
    
         
            +
                    #51608\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51609\",\"name\":\"Lo!
         
     | 
| 
      
 126 
     | 
    
         
            +
                    \ A Beast Is Born\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51610\",\"name\":\"One
         
     | 
| 
      
 127 
     | 
    
         
            +
                    Avenger: Dead on Arrival!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51611\",\"name\":\"Iron
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Man:  D.O.A.\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51612\",\"name\":\"Cover
         
     | 
| 
      
 129 
     | 
    
         
            +
                    #51612\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51613\",\"name\":\"Evil
         
     | 
| 
      
 130 
     | 
    
         
            +
                    Is All In Your Mind!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51614\",\"name\":\"Behind
         
     | 
| 
      
 131 
     | 
    
         
            +
                    the Mask...a Monster!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51615\",\"name\":\"The
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Vampire Machine\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51616\",\"name\":\"The
         
     | 
| 
      
 133 
     | 
    
         
            +
                    Coming of...The Griffin!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51617\",\"name\":\"Murder
         
     | 
| 
      
 134 
     | 
    
         
            +
                    In Mid-Air\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51618\",\"name\":\"Cover
         
     | 
| 
      
 135 
     | 
    
         
            +
                    #51618\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51619\",\"name\":\"And
         
     | 
| 
      
 136 
     | 
    
         
            +
                    the Juggernaut Will Get You If You Don't Watch Out\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51620\",\"name\":\"Origin
         
     | 
| 
      
 137 
     | 
    
         
            +
                    of the Beast!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51621\",\"name\":\"Birth
         
     | 
| 
      
 138 
     | 
    
         
            +
                    of the Beast\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":39,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6666/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23245\",\"name\":\"Amazing
         
     | 
| 
      
 139 
     | 
    
         
            +
                    Adventures (1970) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23256\",\"name\":\"Amazing
         
     | 
| 
      
 140 
     | 
    
         
            +
                    Adventures (1970) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23267\",\"name\":\"Amazing
         
     | 
| 
      
 141 
     | 
    
         
            +
                    Adventures (1970) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23278\",\"name\":\"Amazing
         
     | 
| 
      
 142 
     | 
    
         
            +
                    Adventures (1970) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23279\",\"name\":\"Amazing
         
     | 
| 
      
 143 
     | 
    
         
            +
                    Adventures (1970) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23280\",\"name\":\"Amazing
         
     | 
| 
      
 144 
     | 
    
         
            +
                    Adventures (1970) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23281\",\"name\":\"Amazing
         
     | 
| 
      
 145 
     | 
    
         
            +
                    Adventures (1970) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23282\",\"name\":\"Amazing
         
     | 
| 
      
 146 
     | 
    
         
            +
                    Adventures (1970) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23283\",\"name\":\"Amazing
         
     | 
| 
      
 147 
     | 
    
         
            +
                    Adventures (1970) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23246\",\"name\":\"Amazing
         
     | 
| 
      
 148 
     | 
    
         
            +
                    Adventures (1970) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23247\",\"name\":\"Amazing
         
     | 
| 
      
 149 
     | 
    
         
            +
                    Adventures (1970) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23248\",\"name\":\"Amazing
         
     | 
| 
      
 150 
     | 
    
         
            +
                    Adventures (1970) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23249\",\"name\":\"Amazing
         
     | 
| 
      
 151 
     | 
    
         
            +
                    Adventures (1970) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23250\",\"name\":\"Amazing
         
     | 
| 
      
 152 
     | 
    
         
            +
                    Adventures (1970) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23251\",\"name\":\"Amazing
         
     | 
| 
      
 153 
     | 
    
         
            +
                    Adventures (1970) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23252\",\"name\":\"Amazing
         
     | 
| 
      
 154 
     | 
    
         
            +
                    Adventures (1970) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23253\",\"name\":\"Amazing
         
     | 
| 
      
 155 
     | 
    
         
            +
                    Adventures (1970) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23254\",\"name\":\"Amazing
         
     | 
| 
      
 156 
     | 
    
         
            +
                    Adventures (1970) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23255\",\"name\":\"Amazing
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Adventures (1970) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23257\",\"name\":\"Amazing
         
     | 
| 
      
 158 
     | 
    
         
            +
                    Adventures (1970) #20\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6666/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":3617,\"title\":\"Amazing
         
     | 
| 
      
 159 
     | 
    
         
            +
                    Adventures (1961)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3617\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/3617/amazing_adventures_1961?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1961,\"endYear\":1961,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/90/4bad2be77c973\",\"extension\":\"jpg\"},\"creators\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3617/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 160 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 161 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/305\",\"name\":\"Don
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Heck\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 163 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1306\",\"name\":\"Paul
         
     | 
| 
      
 164 
     | 
    
         
            +
                    Reinman\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 165 
     | 
    
         
            +
                    Lee\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/945\",\"name\":\"Larry
         
     | 
| 
      
 166 
     | 
    
         
            +
                    Lieber\",\"role\":\"writer\"}],\"returned\":7},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3617/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":28,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3617/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37596\",\"name\":\"Join
         
     | 
| 
      
 167 
     | 
    
         
            +
                    Us In The Search For Torr!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37597\",\"name\":\"Torr\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37598\",\"name\":\"Masquerade\",\"type\":\"text
         
     | 
| 
      
 168 
     | 
    
         
            +
                    story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37599\",\"name\":\"Midnight
         
     | 
| 
      
 169 
     | 
    
         
            +
                    in the Wax Museum\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37600\",\"name\":\"I
         
     | 
| 
      
 170 
     | 
    
         
            +
                    Am the Fantastic Dr. Droom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37601\",\"name\":\"This
         
     | 
| 
      
 171 
     | 
    
         
            +
                    is Manoo! The Thing That Hid On Earth!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37602\",\"name\":\"I
         
     | 
| 
      
 172 
     | 
    
         
            +
                    Led the Strange Search for Manoo!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37603\",\"name\":\"The
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Comic\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37604\",\"name\":\"The
         
     | 
| 
      
 174 
     | 
    
         
            +
                    World Below\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37605\",\"name\":\"Rocky's
         
     | 
| 
      
 175 
     | 
    
         
            +
                    Last Ride\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37606\",\"name\":\"We
         
     | 
| 
      
 176 
     | 
    
         
            +
                    Were Trapped in the Twilight World!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37607\",\"name\":\"We
         
     | 
| 
      
 177 
     | 
    
         
            +
                    Were Trapped in the Twilight World!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37608\",\"name\":\"The
         
     | 
| 
      
 178 
     | 
    
         
            +
                    Masterpiece\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37609\",\"name\":\"The
         
     | 
| 
      
 179 
     | 
    
         
            +
                    Teddy Bear\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37610\",\"name\":\"Doctor
         
     | 
| 
      
 180 
     | 
    
         
            +
                    Droom Meets Zemu!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37611\",\"name\":\"I
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Am X\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37612\",\"name\":\"I
         
     | 
| 
      
 182 
     | 
    
         
            +
                    Am Robot X\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37613\",\"name\":\"The
         
     | 
| 
      
 183 
     | 
    
         
            +
                    Pact\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37614\",\"name\":\"Who
         
     | 
| 
      
 184 
     | 
    
         
            +
                    or What Was ... the Bootblack?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37615\",\"name\":\"What
         
     | 
| 
      
 185 
     | 
    
         
            +
                    Lurks Within?\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3617/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17725\",\"name\":\"Amazing
         
     | 
| 
      
 186 
     | 
    
         
            +
                    Adventures (1961) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17726\",\"name\":\"Amazing
         
     | 
| 
      
 187 
     | 
    
         
            +
                    Adventures (1961) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17727\",\"name\":\"Amazing
         
     | 
| 
      
 188 
     | 
    
         
            +
                    Adventures (1961) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17728\",\"name\":\"Amazing
         
     | 
| 
      
 189 
     | 
    
         
            +
                    Adventures (1961) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17729\",\"name\":\"Amazing
         
     | 
| 
      
 190 
     | 
    
         
            +
                    Adventures (1961) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17730\",\"name\":\"Amazing
         
     | 
| 
      
 191 
     | 
    
         
            +
                    Adventures (1961) #6\"}],\"returned\":6},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3617/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":2987,\"title\":\"Amazing
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Fantasy (1962)\",\"description\":\"The very first appearance of Spider-Man!
         
     | 
| 
      
 193 
     | 
    
         
            +
                    Learn the Wallcrawler's tragic origin and witness amazing fantasy as only
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Marvel can provide it!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2987\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2987/amazing_fantasy_1962?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1962,\"endYear\":1962,\"rating\":\"\",\"type\":\"\",\"modified\":\"2011-03-04T10:15:46-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/60/4bad2d8670e37\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2987/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 195 
     | 
    
         
            +
                    Ditko\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Lee\",\"role\":\"editor\"}],\"returned\":3},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2987/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"}],\"returned\":1},\"stories\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2987/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35504\",\"name\":\"Cover:
         
     | 
| 
      
 198 
     | 
    
         
            +
                    Amazing Fantasy (1962) #15\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35505\",\"name\":\"Spider-Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35506\",\"name\":\"The
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Bell-Ringer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35507\",\"name\":\"Man
         
     | 
| 
      
 200 
     | 
    
         
            +
                    in the Mummy Case\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35508\",\"name\":\"There
         
     | 
| 
      
 201 
     | 
    
         
            +
                    are Martians Among Us\",\"type\":\"interiorStory\"}],\"returned\":5},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2987/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16926\",\"name\":\"Amazing
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Fantasy (1962) #15\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2987/events\",\"items\":[],\"returned\":0},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"name\":\"Amazing
         
     | 
| 
      
 203 
     | 
    
         
            +
                    Spider-Man (1963 - 1998)\"},\"previous\":null},{\"id\":15280,\"title\":\"Amazing
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Fantasy 15: Spider-Man! (2011 - 2012)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15280\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/15280/amazing_fantasy_15_spider-man_2011_-_2012?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2011,\"endYear\":2012,\"rating\":\"\",\"type\":\"\",\"modified\":\"2012-06-27T16:28:11-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15280/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 206 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/442\",\"name\":\"Dean
         
     | 
| 
      
 207 
     | 
    
         
            +
                    White\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Lee\",\"role\":\"writer\"}],\"returned\":4},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15280/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15280/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93132\",\"name\":\"Cover
         
     | 
| 
      
 209 
     | 
    
         
            +
                    #93132\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93133\",\"name\":\"Interior
         
     | 
| 
      
 210 
     | 
    
         
            +
                    #93133\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15280/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41139\",\"name\":\"Amazing
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Fantasy 15: Spider-Man! (2011) #1\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15280/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":2707,\"title\":\"Amazing
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Fantasy Omnibus (2007)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2707\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2707/amazing_fantasy_omnibus_2007?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2007,\"endYear\":2007,\"rating\":\"ALL
         
     | 
| 
      
 213 
     | 
    
         
            +
                    AGES\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4bc39a48d373a\",\"extension\":\"jpg\"},\"creators\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2707/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Ditko\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/305\",\"name\":\"Don
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Heck\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1306\",\"name\":\"Paul
         
     | 
| 
      
 218 
     | 
    
         
            +
                    Reinman\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Lee\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/945\",\"name\":\"Larry
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Lieber\",\"role\":\"writer\"}],\"returned\":7},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2707/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"}],\"returned\":1},\"stories\":{\"available\":91,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2707/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35504\",\"name\":\"Cover:
         
     | 
| 
      
 221 
     | 
    
         
            +
                    Amazing Fantasy (1962) #15\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35505\",\"name\":\"Spider-Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35506\",\"name\":\"The
         
     | 
| 
      
 222 
     | 
    
         
            +
                    Bell-Ringer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35507\",\"name\":\"Man
         
     | 
| 
      
 223 
     | 
    
         
            +
                    in the Mummy Case\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35508\",\"name\":\"There
         
     | 
| 
      
 224 
     | 
    
         
            +
                    are Martians Among Us\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37539\",\"name\":\"Those
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Who Change\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37540\",\"name\":\"contents
         
     | 
| 
      
 226 
     | 
    
         
            +
                    page\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37541\",\"name\":\"Those
         
     | 
| 
      
 227 
     | 
    
         
            +
                    Who Change\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37542\",\"name\":\"The
         
     | 
| 
      
 228 
     | 
    
         
            +
                    Mark of the Toad\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37543\",\"name\":\"No
         
     | 
| 
      
 229 
     | 
    
         
            +
                    Sign of Life\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37544\",\"name\":\"Man
         
     | 
| 
      
 230 
     | 
    
         
            +
                    on a Tightrope\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37545\",\"name\":\"Mister
         
     | 
| 
      
 231 
     | 
    
         
            +
                    Universe\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37546\",\"name\":\"Cover
         
     | 
| 
      
 232 
     | 
    
         
            +
                    #37546\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37547\",\"name\":\"contents
         
     | 
| 
      
 233 
     | 
    
         
            +
                    page\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37548\",\"name\":\"*In
         
     | 
| 
      
 234 
     | 
    
         
            +
                    Human Form\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37549\",\"name\":\"For
         
     | 
| 
      
 235 
     | 
    
         
            +
                    the Rest of Your Life\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37550\",\"name\":\"The
         
     | 
| 
      
 236 
     | 
    
         
            +
                    Secret of the Universe\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37551\",\"name\":\"The
         
     | 
| 
      
 237 
     | 
    
         
            +
                    Ice Monster Cometh\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37552\",\"name\":\"Where
         
     | 
| 
      
 238 
     | 
    
         
            +
                    Walks the Ghost\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37553\",\"name\":\"Cover
         
     | 
| 
      
 239 
     | 
    
         
            +
                    #37553\",\"type\":\"cover\"}],\"returned\":20},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2707/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16214\",\"name\":\"Amazing
         
     | 
| 
      
 240 
     | 
    
         
            +
                    Fantasy Omnibus (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2707/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":1987,\"title\":\"Amazing
         
     | 
| 
      
 241 
     | 
    
         
            +
                    Spider-Man (1963 - 1998)\",\"description\":\"The classic adventures of Spider-Man
         
     | 
| 
      
 242 
     | 
    
         
            +
                    from the early days up until the 90's! Meet all of Spidey's deadly enemies,
         
     | 
| 
      
 243 
     | 
    
         
            +
                    from the Green Goblin and Doctor Octopus to Venom and Carnage, plus see Peter
         
     | 
| 
      
 244 
     | 
    
         
            +
                    Parker fall in love, face tragedy and triumph, and learn that with great power
         
     | 
| 
      
 245 
     | 
    
         
            +
                    comes great responsibility.\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1987/amazing_spider-man_1963_-_1998?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1963,\"endYear\":1998,\"rating\":\"\",\"type\":\"\",\"modified\":\"2013-05-21T13:01:41-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/30/519ba83268a2b\",\"extension\":\"jpg\"},\"creators\":{\"available\":220,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1987/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 246 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2041\",\"name\":\"Bill
         
     | 
| 
      
 247 
     | 
    
         
            +
                    Anderson\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 248 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 249 
     | 
    
         
            +
                    Baker\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
         
     | 
| 
      
 250 
     | 
    
         
            +
                    Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2038\",\"name\":\"John
         
     | 
| 
      
 251 
     | 
    
         
            +
                    Beatty\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2113\",\"name\":\"Joe
         
     | 
| 
      
 252 
     | 
    
         
            +
                    Agostinelli\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2074\",\"name\":\"Don
         
     | 
| 
      
 253 
     | 
    
         
            +
                    T. Ask\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1935\",\"name\":\"Paul
         
     | 
| 
      
 254 
     | 
    
         
            +
                    Becton\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1865\",\"name\":\"Diana
         
     | 
| 
      
 255 
     | 
    
         
            +
                    Albers\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1937\",\"name\":\"Jon
         
     | 
| 
      
 256 
     | 
    
         
            +
                    Babcock\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2112\",\"name\":\"Larry
         
     | 
| 
      
 257 
     | 
    
         
            +
                    Alexander\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1167\",\"name\":\"Ross
         
     | 
| 
      
 258 
     | 
    
         
            +
                    Andru\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/87\",\"name\":\"Mark
         
     | 
| 
      
 259 
     | 
    
         
            +
                    Bagley\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/406\",\"name\":\"Mark
         
     | 
| 
      
 260 
     | 
    
         
            +
                    Beagley\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1288\",\"name\":\"Jerry
         
     | 
| 
      
 261 
     | 
    
         
            +
                    Bingham\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2047\",\"name\":\"Craig
         
     | 
| 
      
 262 
     | 
    
         
            +
                    Anderson\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1352\",\"name\":\"Mike
         
     | 
| 
      
 263 
     | 
    
         
            +
                    W. Barr\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/506\",\"name\":\"Joe
         
     | 
| 
      
 264 
     | 
    
         
            +
                    Bennett\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1945\",\"name\":\"Mark
         
     | 
| 
      
 265 
     | 
    
         
            +
                    Bernardo\",\"role\":\"editor\"}],\"returned\":20},\"characters\":{\"available\":47,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1987/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011346\",\"name\":\"Ben
         
     | 
| 
      
 266 
     | 
    
         
            +
                    Reilly\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009181\",\"name\":\"Big
         
     | 
| 
      
 267 
     | 
    
         
            +
                    Wheel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009185\",\"name\":\"Black
         
     | 
| 
      
 268 
     | 
    
         
            +
                    Cat\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 269 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 270 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009227\",\"name\":\"Carnage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009234\",\"name\":\"Chameleon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009267\",\"name\":\"Dazzler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009276\",\"name\":\"Doctor
         
     | 
| 
      
 271 
     | 
    
         
            +
                    Octopus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 272 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009287\",\"name\":\"Electro\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009334\",\"name\":\"Hammerhead\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009345\",\"name\":\"Hitman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009347\",\"name\":\"Hobgoblin
         
     | 
| 
      
 273 
     | 
    
         
            +
                    (Roderick Kingsley)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"name\":\"Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 274 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009374\",\"name\":\"Jigsaw\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009389\",\"name\":\"Kingpin\"}],\"returned\":20},\"stories\":{\"available\":1075,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1987/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13530\",\"name\":\"The
         
     | 
| 
      
 275 
     | 
    
         
            +
                    Stuff Which Dreams are Made!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13531\",\"name\":\"Where
         
     | 
| 
      
 276 
     | 
    
         
            +
                    Have All The Heroes Gone?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13532\",\"name\":\"The
         
     | 
| 
      
 277 
     | 
    
         
            +
                    Secrets of Peter Parker!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13533\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13534\",\"name\":\"Spider-Man\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13535\",\"name\":\"Spider-Man
         
     | 
| 
      
 278 
     | 
    
         
            +
                    vs. The Chameleon\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13536\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13537\",\"name\":\"The
         
     | 
| 
      
 279 
     | 
    
         
            +
                    Enforcers!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13538\",\"name\":\"The
         
     | 
| 
      
 280 
     | 
    
         
            +
                    Spider Or The Man?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13539\",\"name\":\"The
         
     | 
| 
      
 281 
     | 
    
         
            +
                    Spider or the Man?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13540\",\"name\":\"Cover
         
     | 
| 
      
 282 
     | 
    
         
            +
                    #13540\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13541\",\"name\":\"A
         
     | 
| 
      
 283 
     | 
    
         
            +
                    Monster Called...Morbius!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13542\",\"name\":\"Cover
         
     | 
| 
      
 284 
     | 
    
         
            +
                    #13542\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13543\",\"name\":\"Vampire
         
     | 
| 
      
 285 
     | 
    
         
            +
                    At Large!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13544\",\"name\":\"Cover
         
     | 
| 
      
 286 
     | 
    
         
            +
                    #13544\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13545\",\"name\":\"Walk
         
     | 
| 
      
 287 
     | 
    
         
            +
                    The Savage Land!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13546\",\"name\":\"Cover
         
     | 
| 
      
 288 
     | 
    
         
            +
                    #13546\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13547\",\"name\":\"The
         
     | 
| 
      
 289 
     | 
    
         
            +
                    Beauty and the Brute!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13548\",\"name\":\"Cover
         
     | 
| 
      
 290 
     | 
    
         
            +
                    #13548\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13549\",\"name\":\"The
         
     | 
| 
      
 291 
     | 
    
         
            +
                    Spider Slayer!\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":442,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1987/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6481\",\"name\":\"Amazing
         
     | 
| 
      
 292 
     | 
    
         
            +
                    Spider-Man (1963)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6482\",\"name\":\"Amazing
         
     | 
| 
      
 293 
     | 
    
         
            +
                    Spider-Man (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6593\",\"name\":\"Amazing
         
     | 
| 
      
 294 
     | 
    
         
            +
                    Spider-Man (1963) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6704\",\"name\":\"Amazing
         
     | 
| 
      
 295 
     | 
    
         
            +
                    Spider-Man (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6815\",\"name\":\"Amazing
         
     | 
| 
      
 296 
     | 
    
         
            +
                    Spider-Man (1963) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6868\",\"name\":\"Amazing
         
     | 
| 
      
 297 
     | 
    
         
            +
                    Spider-Man (1963) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6879\",\"name\":\"Amazing
         
     | 
| 
      
 298 
     | 
    
         
            +
                    Spider-Man (1963) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6890\",\"name\":\"Amazing
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Spider-Man (1963) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6901\",\"name\":\"Amazing
         
     | 
| 
      
 300 
     | 
    
         
            +
                    Spider-Man (1963) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6912\",\"name\":\"Amazing
         
     | 
| 
      
 301 
     | 
    
         
            +
                    Spider-Man (1963) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6483\",\"name\":\"Amazing
         
     | 
| 
      
 302 
     | 
    
         
            +
                    Spider-Man (1963) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6494\",\"name\":\"Amazing
         
     | 
| 
      
 303 
     | 
    
         
            +
                    Spider-Man (1963) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6505\",\"name\":\"Amazing
         
     | 
| 
      
 304 
     | 
    
         
            +
                    Spider-Man (1963) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6516\",\"name\":\"Amazing
         
     | 
| 
      
 305 
     | 
    
         
            +
                    Spider-Man (1963) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6527\",\"name\":\"Amazing
         
     | 
| 
      
 306 
     | 
    
         
            +
                    Spider-Man (1963) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6538\",\"name\":\"Amazing
         
     | 
| 
      
 307 
     | 
    
         
            +
                    Spider-Man (1963) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6549\",\"name\":\"Amazing
         
     | 
| 
      
 308 
     | 
    
         
            +
                    Spider-Man (1963) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6560\",\"name\":\"Amazing
         
     | 
| 
      
 309 
     | 
    
         
            +
                    Spider-Man (1963) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6571\",\"name\":\"Amazing
         
     | 
| 
      
 310 
     | 
    
         
            +
                    Spider-Man (1963) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6582\",\"name\":\"Amazing
         
     | 
| 
      
 311 
     | 
    
         
            +
                    Spider-Man (1963) #19\"}],\"returned\":20},\"events\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1987/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 312 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/258\",\"name\":\"Kraven's
         
     | 
| 
      
 313 
     | 
    
         
            +
                    Last Hunt\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/151\",\"name\":\"Maximum
         
     | 
| 
      
 314 
     | 
    
         
            +
                    Carnage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 315 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 316 
     | 
    
         
            +
                    Wars II\"}],\"returned\":7},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 317 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2987\",\"name\":\"Amazing
         
     | 
| 
      
 318 
     | 
    
         
            +
                    Fantasy (1962)\"}},{\"id\":2984,\"title\":\"Amazing Spider-Man Annual (1964
         
     | 
| 
      
 319 
     | 
    
         
            +
                    - Present)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2984\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2984/amazing_spider-man_annual_1964_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1964,\"endYear\":2099,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/60/4bad2d98f2adf\",\"extension\":\"jpg\"},\"creators\":{\"available\":121,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2984/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5388\",\"name\":\"Jr\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2112\",\"name\":\"Larry
         
     | 
| 
      
 320 
     | 
    
         
            +
                    Alexander\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 321 
     | 
    
         
            +
                    Ayers\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/87\",\"name\":\"Mark
         
     | 
| 
      
 322 
     | 
    
         
            +
                    Bagley\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3483\",\"name\":\"Mark
         
     | 
| 
      
 323 
     | 
    
         
            +
                    Beachum\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 324 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1827\",\"name\":\"John
         
     | 
| 
      
 325 
     | 
    
         
            +
                    Byrne\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 326 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 327 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 328 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1523\",\"name\":\"Vince
         
     | 
| 
      
 329 
     | 
    
         
            +
                    Colletta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1172\",\"name\":\"Tony
         
     | 
| 
      
 330 
     | 
    
         
            +
                    Dezuniga\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1865\",\"name\":\"Diana
         
     | 
| 
      
 331 
     | 
    
         
            +
                    Albers\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 332 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1746\",\"name\":\"John
         
     | 
| 
      
 333 
     | 
    
         
            +
                    Costanza\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1778\",\"name\":\"Dan
         
     | 
| 
      
 334 
     | 
    
         
            +
                    Crespi\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1541\",\"name\":\"John
         
     | 
| 
      
 335 
     | 
    
         
            +
                    Duffy\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6170\",\"name\":\"Olivier
         
     | 
| 
      
 336 
     | 
    
         
            +
                    Coipel\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/954\",\"name\":\"Gerry
         
     | 
| 
      
 337 
     | 
    
         
            +
                    Conway\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9565\",\"name\":\"Tom
         
     | 
| 
      
 338 
     | 
    
         
            +
                    DeFalco\",\"role\":\"editor\"}],\"returned\":20},\"characters\":{\"available\":30,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2984/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009489\",\"name\":\"Ben
         
     | 
| 
      
 339 
     | 
    
         
            +
                    Parker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010782\",\"name\":\"Ben
         
     | 
| 
      
 340 
     | 
    
         
            +
                    Urich\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010325\",\"name\":\"Betty
         
     | 
| 
      
 341 
     | 
    
         
            +
                    Brant\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 342 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 343 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010774\",\"name\":\"Daily
         
     | 
| 
      
 344 
     | 
    
         
            +
                    Bugle\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009276\",\"name\":\"Doctor
         
     | 
| 
      
 345 
     | 
    
         
            +
                    Octopus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 346 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 347 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009619\",\"name\":\"Gwen
         
     | 
| 
      
 348 
     | 
    
         
            +
                    Stacy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009486\",\"name\":\"Harry
         
     | 
| 
      
 349 
     | 
    
         
            +
                    Osborn\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011300\",\"name\":\"High
         
     | 
| 
      
 350 
     | 
    
         
            +
                    Evolutionary\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"name\":\"Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 351 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009372\",\"name\":\"J.
         
     | 
| 
      
 352 
     | 
    
         
            +
                    Jonah Jameson\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011081\",\"name\":\"Ka-Zar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009404\",\"name\":\"Lizard\"}],\"returned\":20},\"stories\":{\"available\":105,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2984/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35376\",\"name\":\"Cover
         
     | 
| 
      
 353 
     | 
    
         
            +
                    #35376\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35377\",\"name\":\"The
         
     | 
| 
      
 354 
     | 
    
         
            +
                    Sinister Six!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35378\",\"name\":\"Interior
         
     | 
| 
      
 355 
     | 
    
         
            +
                    #35378\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35379\",\"name\":\"The
         
     | 
| 
      
 356 
     | 
    
         
            +
                    Secrets of Spider-Man\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35380\",\"name\":\"How
         
     | 
| 
      
 357 
     | 
    
         
            +
                    Stan Lee and Steve Ditko Create Spider-Man!\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35381\",\"name\":\"Cover
         
     | 
| 
      
 358 
     | 
    
         
            +
                    #35381\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35382\",\"name\":\"Interior
         
     | 
| 
      
 359 
     | 
    
         
            +
                    #35382\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35383\",\"name\":\"Cover
         
     | 
| 
      
 360 
     | 
    
         
            +
                    #35383\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35384\",\"name\":\"Spawn
         
     | 
| 
      
 361 
     | 
    
         
            +
                    of the Spider\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35385\",\"name\":\"Chaos
         
     | 
| 
      
 362 
     | 
    
         
            +
                    At the Coffee Bean!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35386\",\"name\":\"Cover
         
     | 
| 
      
 363 
     | 
    
         
            +
                    #35386\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35387\",\"name\":\"The
         
     | 
| 
      
 364 
     | 
    
         
            +
                    Gentleman's Name is Hulk [frame sequence]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35388\",\"name\":\"The
         
     | 
| 
      
 365 
     | 
    
         
            +
                    Gentleman's Name Is Hulk\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35389\",\"name\":\"[The
         
     | 
| 
      
 366 
     | 
    
         
            +
                    Fight and the Fury] [no title in this reprint]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35390\",\"name\":\"Cover
         
     | 
| 
      
 367 
     | 
    
         
            +
                    #35390\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35391\",\"name\":\"The
         
     | 
| 
      
 368 
     | 
    
         
            +
                    Arms of Doctor Octopus\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35392\",\"name\":\"A
         
     | 
| 
      
 369 
     | 
    
         
            +
                    Gallery of Spider-Man's Most Famous Foes!\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35393\",\"name\":\"Peter
         
     | 
| 
      
 370 
     | 
    
         
            +
                    Parker's Pad!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35394\",\"name\":\"Cover
         
     | 
| 
      
 371 
     | 
    
         
            +
                    #35394\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35395\",\"name\":\"[Bend
         
     | 
| 
      
 372 
     | 
    
         
            +
                    Sinister]\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":29,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2984/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16883\",\"name\":\"Amazing
         
     | 
| 
      
 373 
     | 
    
         
            +
                    Spider-Man Annual (1964) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16894\",\"name\":\"Amazing
         
     | 
| 
      
 374 
     | 
    
         
            +
                    Spider-Man Annual (1964) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16904\",\"name\":\"Amazing
         
     | 
| 
      
 375 
     | 
    
         
            +
                    Spider-Man Annual (1964) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16905\",\"name\":\"Amazing
         
     | 
| 
      
 376 
     | 
    
         
            +
                    Spider-Man Annual (1964) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16906\",\"name\":\"Amazing
         
     | 
| 
      
 377 
     | 
    
         
            +
                    Spider-Man Annual (1964) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16907\",\"name\":\"Amazing
         
     | 
| 
      
 378 
     | 
    
         
            +
                    Spider-Man Annual (1964) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16908\",\"name\":\"Amazing
         
     | 
| 
      
 379 
     | 
    
         
            +
                    Spider-Man Annual (1964) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16909\",\"name\":\"Amazing
         
     | 
| 
      
 380 
     | 
    
         
            +
                    Spider-Man Annual (1964) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16910\",\"name\":\"Amazing
         
     | 
| 
      
 381 
     | 
    
         
            +
                    Spider-Man Annual (1964) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16884\",\"name\":\"Amazing
         
     | 
| 
      
 382 
     | 
    
         
            +
                    Spider-Man Annual (1964) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16885\",\"name\":\"Amazing
         
     | 
| 
      
 383 
     | 
    
         
            +
                    Spider-Man Annual (1964) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16886\",\"name\":\"Amazing
         
     | 
| 
      
 384 
     | 
    
         
            +
                    Spider-Man Annual (1964) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16887\",\"name\":\"Amazing
         
     | 
| 
      
 385 
     | 
    
         
            +
                    Spider-Man Annual (1964) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16888\",\"name\":\"Amazing
         
     | 
| 
      
 386 
     | 
    
         
            +
                    Spider-Man Annual (1964) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16889\",\"name\":\"Amazing
         
     | 
| 
      
 387 
     | 
    
         
            +
                    Spider-Man Annual (1964) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16890\",\"name\":\"Amazing
         
     | 
| 
      
 388 
     | 
    
         
            +
                    Spider-Man Annual (1964) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16891\",\"name\":\"Amazing
         
     | 
| 
      
 389 
     | 
    
         
            +
                    Spider-Man Annual (1964) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16892\",\"name\":\"Amazing
         
     | 
| 
      
 390 
     | 
    
         
            +
                    Spider-Man Annual (1964) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16893\",\"name\":\"Amazing
         
     | 
| 
      
 391 
     | 
    
         
            +
                    Spider-Man Annual (1964) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16895\",\"name\":\"Amazing
         
     | 
| 
      
 392 
     | 
    
         
            +
                    Spider-Man Annual (1964) #20\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2984/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 393 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
         
     | 
| 
      
 394 
     | 
    
         
            +
                    War\"}],\"returned\":2},\"next\":null,\"previous\":null},{\"id\":1967,\"title\":\"Amazing
         
     | 
| 
      
 395 
     | 
    
         
            +
                    Spider-Man Omnibus Vol. 1 (2007)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1967\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1967/amazing_spider-man_omnibus_vol_1_2007?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2007,\"endYear\":2007,\"rating\":\"ALL
         
     | 
| 
      
 396 
     | 
    
         
            +
                    AGES\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/70/4bc354e3f1df8\",\"extension\":\"jpg\"},\"creators\":{\"available\":9,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1967/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2055\",\"name\":\"Bw
         
     | 
| 
      
 397 
     | 
    
         
            +
                    reprint colorist\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2054\",\"name\":\"Original
         
     | 
| 
      
 398 
     | 
    
         
            +
                    Colorist\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2625\",\"name\":\"Jon
         
     | 
| 
      
 399 
     | 
    
         
            +
                    DAgostino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1541\",\"name\":\"John
         
     | 
| 
      
 400 
     | 
    
         
            +
                    Duffy\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1553\",\"name\":\"Sam
         
     | 
| 
      
 401 
     | 
    
         
            +
                    Rosen\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1548\",\"name\":\"Artie
         
     | 
| 
      
 402 
     | 
    
         
            +
                    Simek\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 403 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 404 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 405 
     | 
    
         
            +
                    Lee\",\"role\":\"editor\"}],\"returned\":9},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1967/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009276\",\"name\":\"Doctor
         
     | 
| 
      
 406 
     | 
    
         
            +
                    Octopus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009287\",\"name\":\"Electro\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 407 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009404\",\"name\":\"Lizard\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009325\",\"name\":\"Norman
         
     | 
| 
      
 408 
     | 
    
         
            +
                    Osborn\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"}],\"returned\":7},\"stories\":{\"available\":96,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1967/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13533\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13534\",\"name\":\"Spider-Man\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13535\",\"name\":\"Spider-Man
         
     | 
| 
      
 409 
     | 
    
         
            +
                    vs. The Chameleon\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13536\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13537\",\"name\":\"The
         
     | 
| 
      
 410 
     | 
    
         
            +
                    Enforcers!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13559\",\"name\":\"The
         
     | 
| 
      
 411 
     | 
    
         
            +
                    Long-awaited Return of Doctor Octopus!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13560\",\"name\":\"Turning
         
     | 
| 
      
 412 
     | 
    
         
            +
                    Point\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13561\",\"name\":\"\",\"type\":\"ad\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13562\",\"name\":\"\",\"type\":\"promo\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13584\",\"name\":\"Unmasked
         
     | 
| 
      
 413 
     | 
    
         
            +
                    by Doctor Octopus!\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13585\",\"name\":\"Unmasked
         
     | 
| 
      
 414 
     | 
    
         
            +
                    by Doctor Octopus!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13606\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13607\",\"name\":\"The
         
     | 
| 
      
 415 
     | 
    
         
            +
                    Menace of Mysterio!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13629\",\"name\":\"Interior
         
     | 
| 
      
 416 
     | 
    
         
            +
                    #13629\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13630\",\"name\":\"The
         
     | 
| 
      
 417 
     | 
    
         
            +
                    Grotesque Adventure of the Green Goblin!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13651\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13652\",\"name\":\"Kraven
         
     | 
| 
      
 418 
     | 
    
         
            +
                    the Hunter!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13674\",\"name\":\"Cover
         
     | 
| 
      
 419 
     | 
    
         
            +
                    #13674\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13675\",\"name\":\"Duel
         
     | 
| 
      
 420 
     | 
    
         
            +
                    with Daredevil\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13697\",\"name\":\"\",\"type\":\"\"}],\"returned\":20},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1967/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6332\",\"name\":\"Amazing
         
     | 
| 
      
 421 
     | 
    
         
            +
                    Spider-Man Omnibus Vol. 1 (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1967/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":1970,\"title\":\"Amazing
         
     | 
| 
      
 422 
     | 
    
         
            +
                    Spider-Man Omnibus Vol. 1 (Book Market (2007)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1970\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1970/amazing_spider-man_omnibus_vol_1_book_market_2007?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2007,\"endYear\":2007,\"rating\":\"ALL
         
     | 
| 
      
 423 
     | 
    
         
            +
                    AGES\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1970/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 424 
     | 
    
         
            +
                    Ditko\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 425 
     | 
    
         
            +
                    Lee\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 426 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/63\",\"name\":\"Alex
         
     | 
| 
      
 427 
     | 
    
         
            +
                    Ross\",\"role\":\"penciller (cover)\"}],\"returned\":4},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1970/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1970/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8521\",\"name\":\"Cover
         
     | 
| 
      
 428 
     | 
    
         
            +
                    #8521\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8522\",\"name\":\"Interior
         
     | 
| 
      
 429 
     | 
    
         
            +
                    #8522\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1970/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6326\",\"name\":\"Amazing
         
     | 
| 
      
 430 
     | 
    
         
            +
                    Spider-Man Omnibus Vol. 1 (Book Market (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1970/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":6056,\"title\":\"Annihilation
         
     | 
| 
      
 431 
     | 
    
         
            +
                    Classic (2008)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6056\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/6056/annihilation_classic_2008?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2008,\"endYear\":2008,\"rating\":\"RATED
         
     | 
| 
      
 432 
     | 
    
         
            +
                    A\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/00/4bb6c85261aaf\",\"extension\":\"jpg\"},\"creators\":{\"available\":42,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6056/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1887\",\"name\":\"Janice
         
     | 
| 
      
 433 
     | 
    
         
            +
                    Chiang\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1746\",\"name\":\"John
         
     | 
| 
      
 434 
     | 
    
         
            +
                    Costanza\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1778\",\"name\":\"Dan
         
     | 
| 
      
 435 
     | 
    
         
            +
                    Crespi\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/415\",\"name\":\"Derec
         
     | 
| 
      
 436 
     | 
    
         
            +
                    Aucoin\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1612\",\"name\":\"John
         
     | 
| 
      
 437 
     | 
    
         
            +
                    Buscema\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 438 
     | 
    
         
            +
                    Kane\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 439 
     | 
    
         
            +
                    Kirby\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1935\",\"name\":\"Paul
         
     | 
| 
      
 440 
     | 
    
         
            +
                    Becton\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5962\",\"name\":\"GCW
         
     | 
| 
      
 441 
     | 
    
         
            +
                    enhancement\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1945\",\"name\":\"Mark
         
     | 
| 
      
 442 
     | 
    
         
            +
                    Bernardo\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9565\",\"name\":\"Tom
         
     | 
| 
      
 443 
     | 
    
         
            +
                    DeFalco\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5823\",\"name\":\"Danny
         
     | 
| 
      
 444 
     | 
    
         
            +
                    Bulanadi\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/359\",\"name\":\"John
         
     | 
| 
      
 445 
     | 
    
         
            +
                    Dell\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 446 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/682\",\"name\":\"Todd
         
     | 
| 
      
 447 
     | 
    
         
            +
                    Dezago\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1273\",\"name\":\"Scott
         
     | 
| 
      
 448 
     | 
    
         
            +
                    Edelman\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/259\",\"name\":\"Mark
         
     | 
| 
      
 449 
     | 
    
         
            +
                    Gruenwald\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2997\",\"name\":\"Fred
         
     | 
| 
      
 450 
     | 
    
         
            +
                    Hembeck\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/945\",\"name\":\"Larry
         
     | 
| 
      
 451 
     | 
    
         
            +
                    Lieber\",\"role\":\"writer\"}],\"returned\":20},\"characters\":{\"available\":9,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6056/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011038\",\"name\":\"Bug\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009284\",\"name\":\"Dum
         
     | 
| 
      
 452 
     | 
    
         
            +
                    Dum Dugan\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 453 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 454 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009427\",\"name\":\"Marvel
         
     | 
| 
      
 455 
     | 
    
         
            +
                    Boy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009471\",\"name\":\"Nick
         
     | 
| 
      
 456 
     | 
    
         
            +
                    Fury\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009477\",\"name\":\"Nova\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010744\",\"name\":\"Rocket
         
     | 
| 
      
 457 
     | 
    
         
            +
                    Raccoon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010733\",\"name\":\"Star-Lord
         
     | 
| 
      
 458 
     | 
    
         
            +
                    (Peter Quill)\"}],\"returned\":9},\"stories\":{\"available\":19,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6056/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21017\",\"name\":\"Cover
         
     | 
| 
      
 459 
     | 
    
         
            +
                    #21017\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21018\",\"name\":\"The
         
     | 
| 
      
 460 
     | 
    
         
            +
                    Saga of Star-Lord\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49384\",\"name\":\"Bug
         
     | 
| 
      
 461 
     | 
    
         
            +
                    1, Tales to Astonish 13, Nova 1, Quasar 1, Rocket Raccoon 1-4, Marvel Spotlight
         
     | 
| 
      
 462 
     | 
    
         
            +
                    6, Logan's Run 6, Marvel Premiere 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49385\",\"name\":\"Bug
         
     | 
| 
      
 463 
     | 
    
         
            +
                    1, Tales to Astonish 13, Nova 1, Quasar 1, Rocket Raccoon 1-4, Marvel Spotlight
         
     | 
| 
      
 464 
     | 
    
         
            +
                    6, Logan's Run 6, Marvel Premiere 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50618\",\"name\":\"Cover
         
     | 
| 
      
 465 
     | 
    
         
            +
                    #50618\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50619\",\"name\":\"Interior
         
     | 
| 
      
 466 
     | 
    
         
            +
                    #50619\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50620\",\"name\":\"Cover
         
     | 
| 
      
 467 
     | 
    
         
            +
                    #50620\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50621\",\"name\":\"Interior
         
     | 
| 
      
 468 
     | 
    
         
            +
                    #50621\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50622\",\"name\":\"Cover
         
     | 
| 
      
 469 
     | 
    
         
            +
                    #50622\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/50623\",\"name\":\"Interior
         
     | 
| 
      
 470 
     | 
    
         
            +
                    #50623\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51799\",\"name\":\"Cover
         
     | 
| 
      
 471 
     | 
    
         
            +
                    #51799\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51800\",\"name\":\"Nova\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51905\",\"name\":\"Pulsating
         
     | 
| 
      
 472 
     | 
    
         
            +
                    Premiere Issue!  The Cosmic Avenger -- Now In His Own Book!  Featuring...
         
     | 
| 
      
 473 
     | 
    
         
            +
                    The Untold Origin of Quasar!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51906\",\"name\":\"The
         
     | 
| 
      
 474 
     | 
    
         
            +
                    Price Of Power\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52096\",\"name\":\"Cover
         
     | 
| 
      
 475 
     | 
    
         
            +
                    #52096\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52097\",\"name\":\"Apples
         
     | 
| 
      
 476 
     | 
    
         
            +
                    & Origins\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52098\",\"name\":\"The
         
     | 
| 
      
 477 
     | 
    
         
            +
                    Help Bug Right the Time/Space Continuum Board Game\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52099\",\"name\":\"What's
         
     | 
| 
      
 478 
     | 
    
         
            +
                    Wrong With this Picture\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52100\",\"name\":\"Bug's
         
     | 
| 
      
 479 
     | 
    
         
            +
                    Catch All Activity Page\",\"type\":\"\"}],\"returned\":19},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6056/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22433\",\"name\":\"Annihilation
         
     | 
| 
      
 480 
     | 
    
         
            +
                    Classic (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/6056/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":13540,\"title\":\"Ant-Man
         
     | 
| 
      
 481 
     | 
    
         
            +
                    & Wasp: Small World (2010 - Present)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13540\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/13540/ant-man_wasp_small_world_2010_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2099,\"rating\":\"\",\"type\":\"\",\"modified\":\"2011-06-02T17:24:52-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"creators\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13540/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9394\",\"name\":\"Salvador
         
     | 
| 
      
 482 
     | 
    
         
            +
                    Espin\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9983\",\"name\":\"Ernie
         
     | 
| 
      
 483 
     | 
    
         
            +
                    Hart\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 484 
     | 
    
         
            +
                    Lee\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/305\",\"name\":\"Don
         
     | 
| 
      
 485 
     | 
    
         
            +
                    Heck\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 486 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9550\",\"name\":\"Tim
         
     | 
| 
      
 487 
     | 
    
         
            +
                    Seeley\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4430\",\"name\":\"Jeff
         
     | 
| 
      
 488 
     | 
    
         
            +
                    Youngquist\",\"role\":\"editor\"}],\"returned\":7},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13540/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010802\",\"name\":\"Ant-Man
         
     | 
| 
      
 489 
     | 
    
         
            +
                    (Eric O Grady)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009707\",\"name\":\"Wasp\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13540/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/83238\",\"name\":\"Ant-Man
         
     | 
| 
      
 490 
     | 
    
         
            +
                    & Wasp (2010) #1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/83239\",\"name\":\"Ant-Man
         
     | 
| 
      
 491 
     | 
    
         
            +
                    & Wasp (2010) #1\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13540/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37655\",\"name\":\"Ant-Man
         
     | 
| 
      
 492 
     | 
    
         
            +
                    & Wasp: Small World (Trade Paperback)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13540/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":2982,\"title\":\"Astonishing
         
     | 
| 
      
 493 
     | 
    
         
            +
                    (1951 - 1957)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2982\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2982/astonishing_1951_-_1957?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1951,\"endYear\":1957,\"rating\":\"\",\"type\":\"\",\"modified\":\"2011-05-25T11:07:17-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/e/90/4bad2da1f243f\",\"extension\":\"jpg\"},\"creators\":{\"available\":68,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2982/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5353\",\"name\":\"Lazarus\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5354\",\"name\":\"Walton\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1167\",\"name\":\"Ross
         
     | 
| 
      
 494 
     | 
    
         
            +
                    Andru\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1640\",\"name\":\"Bernard
         
     | 
| 
      
 495 
     | 
    
         
            +
                    Baily\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1671\",\"name\":\"Mannie
         
     | 
| 
      
 496 
     | 
    
         
            +
                    Banks\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1536\",\"name\":\"Bill
         
     | 
| 
      
 497 
     | 
    
         
            +
                    Benulis\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1646\",\"name\":\"Dave
         
     | 
| 
      
 498 
     | 
    
         
            +
                    Berg\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1359\",\"name\":\"Wayne
         
     | 
| 
      
 499 
     | 
    
         
            +
                    Boring\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1089\",\"name\":\"Sol
         
     | 
| 
      
 500 
     | 
    
         
            +
                    Brodsky\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/106\",\"name\":\"Bob
         
     | 
| 
      
 501 
     | 
    
         
            +
                    Brown\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1682\",\"name\":\"Lou
         
     | 
| 
      
 502 
     | 
    
         
            +
                    Cameron\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5348\",\"name\":\"Al
         
     | 
| 
      
 503 
     | 
    
         
            +
                    Carreno\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/270\",\"name\":\"Gene
         
     | 
| 
      
 504 
     | 
    
         
            +
                    Colan\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1523\",\"name\":\"Vince
         
     | 
| 
      
 505 
     | 
    
         
            +
                    Colletta\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1261\",\"name\":\"Tony
         
     | 
| 
      
 506 
     | 
    
         
            +
                    Dipreta\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/32\",\"name\":\"Steve
         
     | 
| 
      
 507 
     | 
    
         
            +
                    Ditko\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1651\",\"name\":\"Richard
         
     | 
| 
      
 508 
     | 
    
         
            +
                    Doxsee\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 509 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 510 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1481\",\"name\":\"Hank
         
     | 
| 
      
 511 
     | 
    
         
            +
                    Chapman\",\"role\":\"writer\"}],\"returned\":20},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2982/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009427\",\"name\":\"Marvel
         
     | 
| 
      
 512 
     | 
    
         
            +
                    Boy\"}],\"returned\":1},\"stories\":{\"available\":266,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2982/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35092\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35093\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35094\",\"name\":\"Cover
         
     | 
| 
      
 513 
     | 
    
         
            +
                    #35094\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35095\",\"name\":\"The
         
     | 
| 
      
 514 
     | 
    
         
            +
                    Torture Chamber\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35096\",\"name\":\"Horror
         
     | 
| 
      
 515 
     | 
    
         
            +
                    for Sale\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35097\",\"name\":\"Date
         
     | 
| 
      
 516 
     | 
    
         
            +
                    with Death!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35098\",\"name\":\"Horror
         
     | 
| 
      
 517 
     | 
    
         
            +
                    Show!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35099\",\"name\":\"The
         
     | 
| 
      
 518 
     | 
    
         
            +
                    Man Who Was Afraid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35100\",\"name\":\"A
         
     | 
| 
      
 519 
     | 
    
         
            +
                    Playmate for Susan\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35101\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35102\",\"name\":\"\\\"The
         
     | 
| 
      
 520 
     | 
    
         
            +
                    Long Jump Down!\\\"\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35103\",\"name\":\"Under
         
     | 
| 
      
 521 
     | 
    
         
            +
                    Glass\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35104\",\"name\":\"And
         
     | 
| 
      
 522 
     | 
    
         
            +
                    Then We Wait\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35105\",\"name\":\"The
         
     | 
| 
      
 523 
     | 
    
         
            +
                    Man Who Jumped!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35106\",\"name\":\"The
         
     | 
| 
      
 524 
     | 
    
         
            +
                    Man Who Changed Bodies!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35107\",\"name\":\"Silence!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35108\",\"name\":\"The
         
     | 
| 
      
 525 
     | 
    
         
            +
                    Clean-Up!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35109\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35110\",\"name\":\"\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/35111\",\"name\":\"\",\"type\":\"\"}],\"returned\":20},\"comics\":{\"available\":61,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2982/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16826\",\"name\":\"Astonishing
         
     | 
| 
      
 526 
     | 
    
         
            +
                    (1951) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16837\",\"name\":\"Astonishing
         
     | 
| 
      
 527 
     | 
    
         
            +
                    (1951) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16848\",\"name\":\"Astonishing
         
     | 
| 
      
 528 
     | 
    
         
            +
                    (1951) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16859\",\"name\":\"Astonishing
         
     | 
| 
      
 529 
     | 
    
         
            +
                    (1951) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16864\",\"name\":\"Astonishing
         
     | 
| 
      
 530 
     | 
    
         
            +
                    (1951) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16865\",\"name\":\"Astonishing
         
     | 
| 
      
 531 
     | 
    
         
            +
                    (1951) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16866\",\"name\":\"Astonishing
         
     | 
| 
      
 532 
     | 
    
         
            +
                    (1951) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16806\",\"name\":\"Astonishing
         
     | 
| 
      
 533 
     | 
    
         
            +
                    (1951) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16807\",\"name\":\"Astonishing
         
     | 
| 
      
 534 
     | 
    
         
            +
                    (1951) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16808\",\"name\":\"Astonishing
         
     | 
| 
      
 535 
     | 
    
         
            +
                    (1951) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16809\",\"name\":\"Astonishing
         
     | 
| 
      
 536 
     | 
    
         
            +
                    (1951) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16810\",\"name\":\"Astonishing
         
     | 
| 
      
 537 
     | 
    
         
            +
                    (1951) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16811\",\"name\":\"Astonishing
         
     | 
| 
      
 538 
     | 
    
         
            +
                    (1951) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16812\",\"name\":\"Astonishing
         
     | 
| 
      
 539 
     | 
    
         
            +
                    (1951) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16813\",\"name\":\"Astonishing
         
     | 
| 
      
 540 
     | 
    
         
            +
                    (1951) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16814\",\"name\":\"Astonishing
         
     | 
| 
      
 541 
     | 
    
         
            +
                    (1951) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16815\",\"name\":\"Astonishing
         
     | 
| 
      
 542 
     | 
    
         
            +
                    (1951) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16816\",\"name\":\"Astonishing
         
     | 
| 
      
 543 
     | 
    
         
            +
                    (1951) #20\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16817\",\"name\":\"Astonishing
         
     | 
| 
      
 544 
     | 
    
         
            +
                    (1951) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16818\",\"name\":\"Astonishing
         
     | 
| 
      
 545 
     | 
    
         
            +
                    (1951) #22\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2982/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":1991,\"title\":\"Avengers
         
     | 
| 
      
 546 
     | 
    
         
            +
                    (1963 - 1996)\",\"description\":\"Avengers Assemble! Iron Man, Thor, Captain
         
     | 
| 
      
 547 
     | 
    
         
            +
                    America and the rest of Earth's Mightiest Heroes unite to stand against the
         
     | 
| 
      
 548 
     | 
    
         
            +
                    threats none can face alone! See the Avengers go up against Ultron, Kang,
         
     | 
| 
      
 549 
     | 
    
         
            +
                    the Masters of Evil and more over three decades of epic action!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1991/avengers_1963_-_1996?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1963,\"endYear\":1996,\"rating\":\"\",\"type\":\"ongoing\",\"modified\":\"2013-05-21T13:10:43-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/10/519baa6d1890a\",\"extension\":\"jpg\"},\"creators\":{\"available\":287,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1991/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2289\",\"name\":\"Alexandrov\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2293\",\"name\":\"Fredericks\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2253\",\"name\":\"Garvey\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 550 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 551 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 552 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 553 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2299\",\"name\":\"Babcock\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2258\",\"name\":\"Lopez\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2328\",\"name\":\"N.j.q.\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1865\",\"name\":\"Diana
         
     | 
| 
      
 554 
     | 
    
         
            +
                    Albers\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2314\",\"name\":\"Bollers\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2284\",\"name\":\"Kossoff\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2330\",\"name\":\"Malibu\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2315\",\"name\":\"Marshall\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2331\",\"name\":\"Ramos\",\"role\":\"penciller
         
     | 
| 
      
 555 
     | 
    
         
            +
                    (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/314\",\"name\":\"Neal
         
     | 
| 
      
 556 
     | 
    
         
            +
                    Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2148\",\"name\":\"Title\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2278\",\"name\":\"Paul
         
     | 
| 
      
 557 
     | 
    
         
            +
                    Abrams\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2234\",\"name\":\"Embellishers
         
     | 
| 
      
 558 
     | 
    
         
            +
                    Assembled\",\"role\":\"penciller\"}],\"returned\":20},\"characters\":{\"available\":95,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1991/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009521\",\"name\":\"
         
     | 
| 
      
 559 
     | 
    
         
            +
                    Hank Pym\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"name\":\"A.I.M.\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010801\",\"name\":\"Ant-Man
         
     | 
| 
      
 560 
     | 
    
         
            +
                    (Scott Lang)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010784\",\"name\":\"Ares\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009170\",\"name\":\"Baron
         
     | 
| 
      
 561 
     | 
    
         
            +
                    Zemo (Heinrich Zemo)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009184\",\"name\":\"Black
         
     | 
| 
      
 562 
     | 
    
         
            +
                    Bolt\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009186\",\"name\":\"Black
         
     | 
| 
      
 563 
     | 
    
         
            +
                    Knight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 564 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 565 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 566 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 567 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009255\",\"name\":\"Crystal\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009267\",\"name\":\"Dazzler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009270\",\"name\":\"Deathbird\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009281\",\"name\":\"Doctor
         
     | 
| 
      
 568 
     | 
    
         
            +
                    Doom\"}],\"returned\":20},\"stories\":{\"available\":837,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1991/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14435\",\"name\":\"Cover
         
     | 
| 
      
 569 
     | 
    
         
            +
                    #14435\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14436\",\"name\":\"The
         
     | 
| 
      
 570 
     | 
    
         
            +
                    Coming of the Avengers!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14441\",\"name\":\"Avengers
         
     | 
| 
      
 571 
     | 
    
         
            +
                    (1963) #10 cover\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14442\",\"name\":\"The
         
     | 
| 
      
 572 
     | 
    
         
            +
                    Avengers Break Up!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14443\",\"name\":\"\",\"type\":\"letters\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14444\",\"name\":\"The
         
     | 
| 
      
 573 
     | 
    
         
            +
                    One and Only \\\"Cap\\\"\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14445\",\"name\":\"Cover
         
     | 
| 
      
 574 
     | 
    
         
            +
                    #14445\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14446\",\"name\":\"Whatever
         
     | 
| 
      
 575 
     | 
    
         
            +
                    Gods There Be\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14447\",\"name\":\"Cover
         
     | 
| 
      
 576 
     | 
    
         
            +
                    #14447\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14448\",\"name\":\"Five
         
     | 
| 
      
 577 
     | 
    
         
            +
                    Dooms to Save Tomorrow\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14449\",\"name\":\"Cover
         
     | 
| 
      
 578 
     | 
    
         
            +
                    #14449\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14450\",\"name\":\"What
         
     | 
| 
      
 579 
     | 
    
         
            +
                    To Do Until The Sentinels Come\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14451\",\"name\":\"Cover
         
     | 
| 
      
 580 
     | 
    
         
            +
                    #14451\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14452\",\"name\":\"The
         
     | 
| 
      
 581 
     | 
    
         
            +
                    Sentinels are Alive and Well!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14453\",\"name\":\"Cover
         
     | 
| 
      
 582 
     | 
    
         
            +
                    #14453\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14454\",\"name\":\"With
         
     | 
| 
      
 583 
     | 
    
         
            +
                    A Bang And A Whimper\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14455\",\"name\":\"Cover
         
     | 
| 
      
 584 
     | 
    
         
            +
                    #14455\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14456\",\"name\":\"In
         
     | 
| 
      
 585 
     | 
    
         
            +
                    The Beginning Was The World Within\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14457\",\"name\":\"Cover
         
     | 
| 
      
 586 
     | 
    
         
            +
                    #14457\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14458\",\"name\":\"A
         
     | 
| 
      
 587 
     | 
    
         
            +
                    Traitor Stalks Among Us!\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":403,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1991/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22620\",\"name\":\"Avengers
         
     | 
| 
      
 588 
     | 
    
         
            +
                    (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6951\",\"name\":\"Avengers
         
     | 
| 
      
 589 
     | 
    
         
            +
                    (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7063\",\"name\":\"Avengers
         
     | 
| 
      
 590 
     | 
    
         
            +
                    (1963) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7174\",\"name\":\"Avengers
         
     | 
| 
      
 591 
     | 
    
         
            +
                    (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7285\",\"name\":\"Avengers
         
     | 
| 
      
 592 
     | 
    
         
            +
                    (1963) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7299\",\"name\":\"Avengers
         
     | 
| 
      
 593 
     | 
    
         
            +
                    (1963) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7310\",\"name\":\"Avengers
         
     | 
| 
      
 594 
     | 
    
         
            +
                    (1963) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7321\",\"name\":\"Avengers
         
     | 
| 
      
 595 
     | 
    
         
            +
                    (1963) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7332\",\"name\":\"Avengers
         
     | 
| 
      
 596 
     | 
    
         
            +
                    (1963) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7343\",\"name\":\"Avengers
         
     | 
| 
      
 597 
     | 
    
         
            +
                    (1963) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6953\",\"name\":\"Avengers
         
     | 
| 
      
 598 
     | 
    
         
            +
                    (1963) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6964\",\"name\":\"Avengers
         
     | 
| 
      
 599 
     | 
    
         
            +
                    (1963) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6975\",\"name\":\"Avengers
         
     | 
| 
      
 600 
     | 
    
         
            +
                    (1963) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6986\",\"name\":\"Avengers
         
     | 
| 
      
 601 
     | 
    
         
            +
                    (1963) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6997\",\"name\":\"Avengers
         
     | 
| 
      
 602 
     | 
    
         
            +
                    (1963) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7008\",\"name\":\"Avengers
         
     | 
| 
      
 603 
     | 
    
         
            +
                    (1963) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7019\",\"name\":\"Avengers
         
     | 
| 
      
 604 
     | 
    
         
            +
                    (1963) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7030\",\"name\":\"Avengers
         
     | 
| 
      
 605 
     | 
    
         
            +
                    (1963) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7041\",\"name\":\"Avengers
         
     | 
| 
      
 606 
     | 
    
         
            +
                    (1963) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7052\",\"name\":\"Avengers
         
     | 
| 
      
 607 
     | 
    
         
            +
                    (1963) #19\"}],\"returned\":20},\"events\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1991/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 608 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/239\",\"name\":\"Crossing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 609 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 610 
     | 
    
         
            +
                    Wars II\"}],\"returned\":6},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 611 
     | 
    
         
            +
                    (1996 - 1997)\"},\"previous\":null},{\"id\":354,\"title\":\"Avengers (1998
         
     | 
| 
      
 612 
     | 
    
         
            +
                    - 2004)\",\"description\":\"The Avengers return! Earth's Mightiest Heroes
         
     | 
| 
      
 613 
     | 
    
         
            +
                    reunite with their biggest guns at the forefront to take on familiar enemies
         
     | 
| 
      
 614 
     | 
    
         
            +
                    and new threats alike! Featuring the work of Kurt Busiek, George Perez and
         
     | 
| 
      
 615 
     | 
    
         
            +
                    other quintessential Avengers creators!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/354/avengers_1998_-_2004?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1998,\"endYear\":2004,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-03-01T13:18:46-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/00/5130f06bd981b\",\"extension\":\"jpg\"},\"creators\":{\"available\":91,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/354/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6694\",\"name\":\"Wes
         
     | 
| 
      
 616 
     | 
    
         
            +
                    Abbot\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5743\",\"name\":\"Jon
         
     | 
| 
      
 617 
     | 
    
         
            +
                    Costa\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5744\",\"name\":\"Liv\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 618 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/854\",\"name\":\"Oclair
         
     | 
| 
      
 619 
     | 
    
         
            +
                    Albert\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 620 
     | 
    
         
            +
                    Buscema\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4014\",\"name\":\"Axel
         
     | 
| 
      
 621 
     | 
    
         
            +
                    Alonso\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2133\",\"name\":\"Tom
         
     | 
| 
      
 622 
     | 
    
         
            +
                    Brevoort\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/651\",\"name\":\"Brent
         
     | 
| 
      
 623 
     | 
    
         
            +
                    Anderson\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/219\",\"name\":\"Kia
         
     | 
| 
      
 624 
     | 
    
         
            +
                    Asamiya\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1216\",\"name\":\"Rich
         
     | 
| 
      
 625 
     | 
    
         
            +
                    Buckler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/16\",\"name\":\"Alan
         
     | 
| 
      
 626 
     | 
    
         
            +
                    Davis\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11\",\"name\":\"Chuck
         
     | 
| 
      
 627 
     | 
    
         
            +
                    Austen\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/24\",\"name\":\"Brian
         
     | 
| 
      
 628 
     | 
    
         
            +
                    Michael Bendis\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1231\",\"name\":\"Kurt
         
     | 
| 
      
 629 
     | 
    
         
            +
                    Busiek\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/162\",\"name\":\"John
         
     | 
| 
      
 630 
     | 
    
         
            +
                    Cassaday\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/174\",\"name\":\"Sean
         
     | 
| 
      
 631 
     | 
    
         
            +
                    Chen\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6170\",\"name\":\"Olivier
         
     | 
| 
      
 632 
     | 
    
         
            +
                    Coipel\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8504\",\"name\":\"Frank
         
     | 
| 
      
 633 
     | 
    
         
            +
                    D'Armata\",\"role\":\"colorist\"}],\"returned\":20},\"characters\":{\"available\":105,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/354/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"name\":\"A.I.M.\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009146\",\"name\":\"Abomination
         
     | 
| 
      
 634 
     | 
    
         
            +
                    (Emil Blonsky)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010784\",\"name\":\"Ares\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010336\",\"name\":\"Atlas
         
     | 
| 
      
 635 
     | 
    
         
            +
                    (Team)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009177\",\"name\":\"Bedlam\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009186\",\"name\":\"Black
         
     | 
| 
      
 636 
     | 
    
         
            +
                    Knight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 637 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 638 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010887\",\"name\":\"Bulldozer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 639 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 640 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009255\",\"name\":\"Crystal\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011020\",\"name\":\"Darkhawk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009266\",\"name\":\"Darkstar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009273\",\"name\":\"Diablo\"}],\"returned\":20},\"stories\":{\"available\":202,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/354/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/490\",\"name\":\"Interior
         
     | 
| 
      
 641 
     | 
    
         
            +
                    #490\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/542\",\"name\":\"Interior
         
     | 
| 
      
 642 
     | 
    
         
            +
                    #542\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/572\",\"name\":\"Interior
         
     | 
| 
      
 643 
     | 
    
         
            +
                    #572\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/574\",\"name\":\"Interior
         
     | 
| 
      
 644 
     | 
    
         
            +
                    #574\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/575\",\"name\":\"Interior
         
     | 
| 
      
 645 
     | 
    
         
            +
                    #575\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/577\",\"name\":\"Interior
         
     | 
| 
      
 646 
     | 
    
         
            +
                    #577\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/579\",\"name\":\"Interior
         
     | 
| 
      
 647 
     | 
    
         
            +
                    #579\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/580\",\"name\":\"Interior
         
     | 
| 
      
 648 
     | 
    
         
            +
                    #580\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1024\",\"name\":\"Avengers
         
     | 
| 
      
 649 
     | 
    
         
            +
                    (1998) #80\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1025\",\"name\":\"Interior
         
     | 
| 
      
 650 
     | 
    
         
            +
                    #1025\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1026\",\"name\":\"Avengers
         
     | 
| 
      
 651 
     | 
    
         
            +
                    (1998) #81\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1027\",\"name\":\"Interior
         
     | 
| 
      
 652 
     | 
    
         
            +
                    #1027\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1028\",\"name\":\"Cover
         
     | 
| 
      
 653 
     | 
    
         
            +
                    #1028\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1029\",\"name\":\"Interior
         
     | 
| 
      
 654 
     | 
    
         
            +
                    #1029\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1030\",\"name\":\"Avengers
         
     | 
| 
      
 655 
     | 
    
         
            +
                    (1998) #500\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1031\",\"name\":\"Interior
         
     | 
| 
      
 656 
     | 
    
         
            +
                    #1031\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1038\",\"name\":\"Avengers
         
     | 
| 
      
 657 
     | 
    
         
            +
                    (1998) #501\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1039\",\"name\":\"Interior
         
     | 
| 
      
 658 
     | 
    
         
            +
                    #1039\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1040\",\"name\":\"Avengers
         
     | 
| 
      
 659 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1041\",\"name\":\"Avengers
         
     | 
| 
      
 660 
     | 
    
         
            +
                    (1998) #502\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":91,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/354/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3589\",\"name\":\"Avengers
         
     | 
| 
      
 661 
     | 
    
         
            +
                    (1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17490\",\"name\":\"Avengers
         
     | 
| 
      
 662 
     | 
    
         
            +
                    (1998) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17501\",\"name\":\"Avengers
         
     | 
| 
      
 663 
     | 
    
         
            +
                    (1998) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17512\",\"name\":\"Avengers
         
     | 
| 
      
 664 
     | 
    
         
            +
                    (1998) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17523\",\"name\":\"Avengers
         
     | 
| 
      
 665 
     | 
    
         
            +
                    (1998) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17534\",\"name\":\"Avengers
         
     | 
| 
      
 666 
     | 
    
         
            +
                    (1998) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17545\",\"name\":\"Avengers
         
     | 
| 
      
 667 
     | 
    
         
            +
                    (1998) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17556\",\"name\":\"Avengers
         
     | 
| 
      
 668 
     | 
    
         
            +
                    (1998) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17567\",\"name\":\"Avengers
         
     | 
| 
      
 669 
     | 
    
         
            +
                    (1998) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17573\",\"name\":\"Avengers
         
     | 
| 
      
 670 
     | 
    
         
            +
                    (1998) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17491\",\"name\":\"Avengers
         
     | 
| 
      
 671 
     | 
    
         
            +
                    (1998) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17492\",\"name\":\"Avengers
         
     | 
| 
      
 672 
     | 
    
         
            +
                    (1998) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17493\",\"name\":\"Avengers
         
     | 
| 
      
 673 
     | 
    
         
            +
                    (1998) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17494\",\"name\":\"Avengers
         
     | 
| 
      
 674 
     | 
    
         
            +
                    (1998) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17495\",\"name\":\"Avengers
         
     | 
| 
      
 675 
     | 
    
         
            +
                    (1998) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17496\",\"name\":\"Avengers
         
     | 
| 
      
 676 
     | 
    
         
            +
                    (1998) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17497\",\"name\":\"Avengers
         
     | 
| 
      
 677 
     | 
    
         
            +
                    (1998) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17498\",\"name\":\"Avengers
         
     | 
| 
      
 678 
     | 
    
         
            +
                    (1998) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17499\",\"name\":\"Avengers
         
     | 
| 
      
 679 
     | 
    
         
            +
                    (1998) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17500\",\"name\":\"Avengers
         
     | 
| 
      
 680 
     | 
    
         
            +
                    (1998) #19\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/354/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/234\",\"name\":\"Avengers
         
     | 
| 
      
 681 
     | 
    
         
            +
                    Disassembled\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 682 
     | 
    
         
            +
                    Security\"}],\"returned\":2},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/753\",\"name\":\"New
         
     | 
| 
      
 683 
     | 
    
         
            +
                    Avengers (2004 - 2010)\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
         
     | 
| 
      
 684 
     | 
    
         
            +
                    (1996 - 1997)\"}},{\"id\":15281,\"title\":\"Avengers 1: The Coming of the
         
     | 
| 
      
 685 
     | 
    
         
            +
                    Avengers! (2011 - 2012)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15281\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/15281/avengers_1_the_coming_of_the_avengers_2011_-_2012?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2011,\"endYear\":2012,\"rating\":\"\",\"type\":\"\",\"modified\":\"2012-01-25T09:40:51-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15281/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11562\",\"name\":\"Jean-Francois
         
     | 
| 
      
 686 
     | 
    
         
            +
                    Beaulieu\",\"role\":\"Colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 687 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 688 
     | 
    
         
            +
                    Lee\",\"role\":\"writer\"}],\"returned\":3},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15281/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15281/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93134\",\"name\":\"Cover
         
     | 
| 
      
 689 
     | 
    
         
            +
                    #93134\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93135\",\"name\":\"Interior
         
     | 
| 
      
 690 
     | 
    
         
            +
                    #93135\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/96503\",\"name\":\"Cover
         
     | 
| 
      
 691 
     | 
    
         
            +
                    #96503\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/96504\",\"name\":\"Interior
         
     | 
| 
      
 692 
     | 
    
         
            +
                    #96504\",\"type\":\"interiorStory\"}],\"returned\":4},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15281/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41140\",\"name\":\"Avengers
         
     | 
| 
      
 693 
     | 
    
         
            +
                    1: The Coming of the Avengers! (2011) #1\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/15281/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":1988,\"title\":\"Avengers
         
     | 
| 
      
 694 
     | 
    
         
            +
                    Annual (1967 - 1994)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1988\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1988/avengers_annual_1967_-_1994?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1967,\"endYear\":1994,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/80/4bad433ce2897\",\"extension\":\"jpg\"},\"creators\":{\"available\":162,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1988/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2719\",\"name\":\"Yug\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3632\",\"name\":\"Lois
         
     | 
| 
      
 695 
     | 
    
         
            +
                    Buhalis\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 696 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 697 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2707\",\"name\":\"Jeff
         
     | 
| 
      
 698 
     | 
    
         
            +
                    Albrecht\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 699 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 700 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 701 
     | 
    
         
            +
                    Baker\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2383\",\"name\":\"Charles
         
     | 
| 
      
 702 
     | 
    
         
            +
                    Barnett\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1089\",\"name\":\"Sol
         
     | 
| 
      
 703 
     | 
    
         
            +
                    Brodsky\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1940\",\"name\":\"Karl
         
     | 
| 
      
 704 
     | 
    
         
            +
                    Altstaetter\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/87\",\"name\":\"Mark
         
     | 
| 
      
 705 
     | 
    
         
            +
                    Bagley\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2720\",\"name\":\"Michael
         
     | 
| 
      
 706 
     | 
    
         
            +
                    Bair\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/211\",\"name\":\"Mark
         
     | 
| 
      
 707 
     | 
    
         
            +
                    Bright\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1612\",\"name\":\"John
         
     | 
| 
      
 708 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2713\",\"name\":\"Gary
         
     | 
| 
      
 709 
     | 
    
         
            +
                    Barnum\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2722\",\"name\":\"Scott
         
     | 
| 
      
 710 
     | 
    
         
            +
                    Benson\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1935\",\"name\":\"Paul
         
     | 
| 
      
 711 
     | 
    
         
            +
                    Becton\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1909\",\"name\":\"Steve
         
     | 
| 
      
 712 
     | 
    
         
            +
                    Buccellato\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 713 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciller (cover)\"}],\"returned\":20},\"characters\":{\"available\":29,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1988/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009148\",\"name\":\"Absorbing
         
     | 
| 
      
 714 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009170\",\"name\":\"Baron
         
     | 
| 
      
 715 
     | 
    
         
            +
                    Zemo (Heinrich Zemo)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009186\",\"name\":\"Black
         
     | 
| 
      
 716 
     | 
    
         
            +
                    Knight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009199\",\"name\":\"Blob\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 717 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009271\",\"name\":\"Destiny\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 718 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009338\",\"name\":\"Hawkeye\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009343\",\"name\":\"Hercules\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011300\",\"name\":\"High
         
     | 
| 
      
 719 
     | 
    
         
            +
                    Evolutionary\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"name\":\"Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 720 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009384\",\"name\":\"Kang\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009407\",\"name\":\"Loki\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009522\",\"name\":\"Pyro\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009524\",\"name\":\"Quicksilver\"}],\"returned\":20},\"stories\":{\"available\":90,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1988/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17372\",\"name\":\"Cover
         
     | 
| 
      
 721 
     | 
    
         
            +
                    #17372\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17373\",\"name\":\"The
         
     | 
| 
      
 722 
     | 
    
         
            +
                    Monstrous Master Plan of the Mandarin\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17374\",\"name\":\"Bombastic
         
     | 
| 
      
 723 
     | 
    
         
            +
                    Bullpen Biography Dept.\",\"type\":\"text page\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17375\",\"name\":\"pin-ups,
         
     | 
| 
      
 724 
     | 
    
         
            +
                    etc.\",\"type\":\"features\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17376\",\"name\":\"Cover
         
     | 
| 
      
 725 
     | 
    
         
            +
                    #17376\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17377\",\"name\":\"By
         
     | 
| 
      
 726 
     | 
    
         
            +
                    Friends--Betrayed!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17378\",\"name\":\"Cover
         
     | 
| 
      
 727 
     | 
    
         
            +
                    #17378\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17379\",\"name\":\"In
         
     | 
| 
      
 728 
     | 
    
         
            +
                    Honor's Name!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17380\",\"name\":\"Cover
         
     | 
| 
      
 729 
     | 
    
         
            +
                    #17380\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17381\",\"name\":\"Moonrise\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17382\",\"name\":\"Cover
         
     | 
| 
      
 730 
     | 
    
         
            +
                    #17382\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17383\",\"name\":\"In
         
     | 
| 
      
 731 
     | 
    
         
            +
                    Memory Yet Green\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17384\",\"name\":\"Cover
         
     | 
| 
      
 732 
     | 
    
         
            +
                    #17384\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17385\",\"name\":\"Fifth
         
     | 
| 
      
 733 
     | 
    
         
            +
                    Column\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17386\",\"name\":\"Cover
         
     | 
| 
      
 734 
     | 
    
         
            +
                    #17386\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17387\",\"name\":\"Betrayal\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17388\",\"name\":\"Cover
         
     | 
| 
      
 735 
     | 
    
         
            +
                    #17388\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17389\",\"name\":\"The
         
     | 
| 
      
 736 
     | 
    
         
            +
                    Day Death Died\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17390\",\"name\":\"Avengers
         
     | 
| 
      
 737 
     | 
    
         
            +
                    Annual (1967) #17\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17391\",\"name\":\"Prometheus
         
     | 
| 
      
 738 
     | 
    
         
            +
                    Mutans\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":27,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1988/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6923\",\"name\":\"Avengers
         
     | 
| 
      
 739 
     | 
    
         
            +
                    Annual (1967) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6934\",\"name\":\"Avengers
         
     | 
| 
      
 740 
     | 
    
         
            +
                    Annual (1967) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6939\",\"name\":\"Avengers
         
     | 
| 
      
 741 
     | 
    
         
            +
                    Annual (1967) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6940\",\"name\":\"Avengers
         
     | 
| 
      
 742 
     | 
    
         
            +
                    Annual (1967) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6941\",\"name\":\"Avengers
         
     | 
| 
      
 743 
     | 
    
         
            +
                    Annual (1967) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6942\",\"name\":\"Avengers
         
     | 
| 
      
 744 
     | 
    
         
            +
                    Annual (1967) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6943\",\"name\":\"Avengers
         
     | 
| 
      
 745 
     | 
    
         
            +
                    Annual (1967) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6944\",\"name\":\"Avengers
         
     | 
| 
      
 746 
     | 
    
         
            +
                    Annual (1967) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6945\",\"name\":\"Avengers
         
     | 
| 
      
 747 
     | 
    
         
            +
                    Annual (1967) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6924\",\"name\":\"Avengers
         
     | 
| 
      
 748 
     | 
    
         
            +
                    Annual (1967) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6925\",\"name\":\"Avengers
         
     | 
| 
      
 749 
     | 
    
         
            +
                    Annual (1967) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6926\",\"name\":\"Avengers
         
     | 
| 
      
 750 
     | 
    
         
            +
                    Annual (1967) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6927\",\"name\":\"Avengers
         
     | 
| 
      
 751 
     | 
    
         
            +
                    Annual (1967) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6928\",\"name\":\"Avengers
         
     | 
| 
      
 752 
     | 
    
         
            +
                    Annual (1967) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6929\",\"name\":\"Avengers
         
     | 
| 
      
 753 
     | 
    
         
            +
                    Annual (1967) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6930\",\"name\":\"Avengers
         
     | 
| 
      
 754 
     | 
    
         
            +
                    Annual (1967) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6931\",\"name\":\"Avengers
         
     | 
| 
      
 755 
     | 
    
         
            +
                    Annual (1967) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6932\",\"name\":\"Avengers
         
     | 
| 
      
 756 
     | 
    
         
            +
                    Annual (1967) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6933\",\"name\":\"Avengers
         
     | 
| 
      
 757 
     | 
    
         
            +
                    Annual (1967) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6935\",\"name\":\"Avengers
         
     | 
| 
      
 758 
     | 
    
         
            +
                    Annual (1967) #20\"}],\"returned\":20},\"events\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1988/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 759 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
         
     | 
| 
      
 760 
     | 
    
         
            +
                    Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
         
     | 
| 
      
 761 
     | 
    
         
            +
                    War\"}],\"returned\":3},\"next\":null,\"previous\":null},{\"id\":1737,\"title\":\"Avengers
         
     | 
| 
      
 762 
     | 
    
         
            +
                    Assemble Vol. 3 (2006)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1737\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1737/avengers_assemble_vol_3_2006?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2006,\"endYear\":2006,\"rating\":\"RATED
         
     | 
| 
      
 763 
     | 
    
         
            +
                    T+\",\"type\":\"collection\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/60/4bc5d7ead7c08\",\"extension\":\"jpg\"},\"creators\":{\"available\":44,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1737/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6694\",\"name\":\"Wes
         
     | 
| 
      
 764 
     | 
    
         
            +
                    Abbot\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5743\",\"name\":\"Jon
         
     | 
| 
      
 765 
     | 
    
         
            +
                    Costa\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3603\",\"name\":\"Albert
         
     | 
| 
      
 766 
     | 
    
         
            +
                    Deschesne\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4549\",\"name\":\"Oscar
         
     | 
| 
      
 767 
     | 
    
         
            +
                    Gongora\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/498\",\"name\":\"Greg
         
     | 
| 
      
 768 
     | 
    
         
            +
                    Adams\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 769 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/552\",\"name\":\"Wade
         
     | 
| 
      
 770 
     | 
    
         
            +
                    von Grawbadger\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/87\",\"name\":\"Mark
         
     | 
| 
      
 771 
     | 
    
         
            +
                    Bagley\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2133\",\"name\":\"Tom
         
     | 
| 
      
 772 
     | 
    
         
            +
                    Brevoort\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4146\",\"name\":\"Frank
         
     | 
| 
      
 773 
     | 
    
         
            +
                    Dunkerley\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1178\",\"name\":\"Archie
         
     | 
| 
      
 774 
     | 
    
         
            +
                    Goodwin\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/375\",\"name\":\"Bob
         
     | 
| 
      
 775 
     | 
    
         
            +
                    Harras\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1216\",\"name\":\"Rich
         
     | 
| 
      
 776 
     | 
    
         
            +
                    Buckler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2712\",\"name\":\"Richard
         
     | 
| 
      
 777 
     | 
    
         
            +
                    Howell\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1231\",\"name\":\"Kurt
         
     | 
| 
      
 778 
     | 
    
         
            +
                    Busiek\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1218\",\"name\":\"Harlan
         
     | 
| 
      
 779 
     | 
    
         
            +
                    Ellison\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/104\",\"name\":\"Steve
         
     | 
| 
      
 780 
     | 
    
         
            +
                    Englehart\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4828\",\"name\":\"Rich
         
     | 
| 
      
 781 
     | 
    
         
            +
                    Horie\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4058\",\"name\":\"Tanya
         
     | 
| 
      
 782 
     | 
    
         
            +
                    Horie\",\"role\":\"colorist\"}],\"returned\":20},\"characters\":{\"available\":48,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1737/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010336\",\"name\":\"Atlas
         
     | 
| 
      
 783 
     | 
    
         
            +
                    (Team)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009177\",\"name\":\"Bedlam\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 784 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 785 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 786 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 787 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011072\",\"name\":\"Edwin
         
     | 
| 
      
 788 
     | 
    
         
            +
                    Jarvis\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010868\",\"name\":\"Firebird\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009306\",\"name\":\"Firestar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009470\",\"name\":\"Foggy
         
     | 
| 
      
 789 
     | 
    
         
            +
                    Nelson\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009318\",\"name\":\"Ghost
         
     | 
| 
      
 790 
     | 
    
         
            +
                    Rider (Johnny Blaze)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009328\",\"name\":\"Grim
         
     | 
| 
      
 791 
     | 
    
         
            +
                    Reaper\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011490\",\"name\":\"Hank
         
     | 
| 
      
 792 
     | 
    
         
            +
                    Pym\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010351\",\"name\":\"Hellcat
         
     | 
| 
      
 793 
     | 
    
         
            +
                    (Patsy Walker)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009343\",\"name\":\"Hercules\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 794 
     | 
    
         
            +
                    Torch\"}],\"returned\":20},\"stories\":{\"available\":37,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1737/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7374\",\"name\":\"Avengers
         
     | 
| 
      
 795 
     | 
    
         
            +
                    23-34, 1 1/2, Thunderbolts 42-44\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7375\",\"name\":\"Avengers
         
     | 
| 
      
 796 
     | 
    
         
            +
                    23-34, 1 1/2, Thunderbolts 42-44\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31110\",\"name\":\"Cover
         
     | 
| 
      
 797 
     | 
    
         
            +
                    #31110\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31111\",\"name\":\"Two
         
     | 
| 
      
 798 
     | 
    
         
            +
                    Ships\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31112\",\"name\":\"Rap
         
     | 
| 
      
 799 
     | 
    
         
            +
                    Sheet\",\"type\":\"letters\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31113\",\"name\":\"Cover
         
     | 
| 
      
 800 
     | 
    
         
            +
                    #31113\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31114\",\"name\":\"Chasing
         
     | 
| 
      
 801 
     | 
    
         
            +
                    Your Own Tail!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31115\",\"name\":\"Chasing
         
     | 
| 
      
 802 
     | 
    
         
            +
                    Your Own Tail! [continued]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31116\",\"name\":\"Cover
         
     | 
| 
      
 803 
     | 
    
         
            +
                    #31116\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31117\",\"name\":\"Keeping
         
     | 
| 
      
 804 
     | 
    
         
            +
                    an Ion the Crowd!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31118\",\"name\":\"Keeping
         
     | 
| 
      
 805 
     | 
    
         
            +
                    an Ion the Crowd! [continued]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37367\",\"name\":\"Cover
         
     | 
| 
      
 806 
     | 
    
         
            +
                    #37367\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37368\",\"name\":\"Showdown\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37369\",\"name\":\"Cover
         
     | 
| 
      
 807 
     | 
    
         
            +
                    #37369\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37370\",\"name\":\"Harsh
         
     | 
| 
      
 808 
     | 
    
         
            +
                    Judgments\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37371\",\"name\":\"Cover
         
     | 
| 
      
 809 
     | 
    
         
            +
                    #37371\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37372\",\"name\":\"The
         
     | 
| 
      
 810 
     | 
    
         
            +
                    Ninth Day\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37373\",\"name\":\"Cover
         
     | 
| 
      
 811 
     | 
    
         
            +
                    #37373\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37374\",\"name\":\"...Under
         
     | 
| 
      
 812 
     | 
    
         
            +
                    Cover of Night!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37375\",\"name\":\"Cover
         
     | 
| 
      
 813 
     | 
    
         
            +
                    #37375\",\"type\":\"cover\"}],\"returned\":20},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1737/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4461\",\"name\":\"Avengers
         
     | 
| 
      
 814 
     | 
    
         
            +
                    Assemble Vol. 3 (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1737/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":2384,\"title\":\"Avengers
         
     | 
| 
      
 815 
     | 
    
         
            +
                    Classic (2007 - 2008)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2384\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2384/avengers_classic_2007_-_2008?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2007,\"endYear\":2008,\"rating\":\"RATED
         
     | 
| 
      
 816 
     | 
    
         
            +
                    A\",\"type\":\"\",\"modified\":\"2011-05-24T15:27:22-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/40/4bc49543209ea\",\"extension\":\"jpg\"},\"creators\":{\"available\":14,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2384/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/249\",\"name\":\"Art
         
     | 
| 
      
 817 
     | 
    
         
            +
                    Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/726\",\"name\":\"Tom
         
     | 
| 
      
 818 
     | 
    
         
            +
                    Beland\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8116\",\"name\":\"Bob
         
     | 
| 
      
 819 
     | 
    
         
            +
                    Burden\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
         
     | 
| 
      
 820 
     | 
    
         
            +
                    Lee\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/392\",\"name\":\"Dwayne
         
     | 
| 
      
 821 
     | 
    
         
            +
                    McDuffie\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1054\",\"name\":\"Juan
         
     | 
| 
      
 822 
     | 
    
         
            +
                    Doe\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/305\",\"name\":\"Don
         
     | 
| 
      
 823 
     | 
    
         
            +
                    Heck\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 824 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/780\",\"name\":\"Kevin
         
     | 
| 
      
 825 
     | 
    
         
            +
                    Maguire\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1433\",\"name\":\"Mike
         
     | 
| 
      
 826 
     | 
    
         
            +
                    Avon Oeming\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8429\",\"name\":\"Dave
         
     | 
| 
      
 827 
     | 
    
         
            +
                    Sharpe\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/410\",\"name\":\"Rus
         
     | 
| 
      
 828 
     | 
    
         
            +
                    Wooton\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/500\",\"name\":\"Chris
         
     | 
| 
      
 829 
     | 
    
         
            +
                    Sotomayor\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1244\",\"name\":\"Tom
         
     | 
| 
      
 830 
     | 
    
         
            +
                    Ziuko\",\"role\":\"colorist\"}],\"returned\":14},\"characters\":{\"available\":19,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2384/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 831 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009189\",\"name\":\"Black
         
     | 
| 
      
 832 
     | 
    
         
            +
                    Widow\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 833 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011490\",\"name\":\"Hank
         
     | 
| 
      
 834 
     | 
    
         
            +
                    Pym\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009338\",\"name\":\"Hawkeye\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"name\":\"Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 835 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 836 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009524\",\"name\":\"Quicksilver\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009562\",\"name\":\"Scarlet
         
     | 
| 
      
 837 
     | 
    
         
            +
                    Witch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 838 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009664\",\"name\":\"Thor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009697\",\"name\":\"Vision\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009707\",\"name\":\"Wasp\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"name\":\"Wolverine\"}],\"returned\":19},\"stories\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2384/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32383\",\"name\":\"Reprints
         
     | 
| 
      
 839 
     | 
    
         
            +
                    Avengers 1 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32384\",\"name\":\"Reprints
         
     | 
| 
      
 840 
     | 
    
         
            +
                    Avengers 1 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32608\",\"name\":\"Reprints
         
     | 
| 
      
 841 
     | 
    
         
            +
                    Avengers 2 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32609\",\"name\":\"Reprints
         
     | 
| 
      
 842 
     | 
    
         
            +
                    Avengers 2 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32994\",\"name\":\"Reprints
         
     | 
| 
      
 843 
     | 
    
         
            +
                    Avengers 3 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32995\",\"name\":\"Reprints
         
     | 
| 
      
 844 
     | 
    
         
            +
                    Avengers 3 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33327\",\"name\":\"Reprints
         
     | 
| 
      
 845 
     | 
    
         
            +
                    Avengers 4 with new 9 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33328\",\"name\":\"Reprints
         
     | 
| 
      
 846 
     | 
    
         
            +
                    Avengers 4 with new 9 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33329\",\"name\":\"Reprints
         
     | 
| 
      
 847 
     | 
    
         
            +
                    Avengers 5 with new 9 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33330\",\"name\":\"Reprints
         
     | 
| 
      
 848 
     | 
    
         
            +
                    Avengers 5 with new 9 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36158\",\"name\":\"Reprints
         
     | 
| 
      
 849 
     | 
    
         
            +
                    Avengers 6 with new 9 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36159\",\"name\":\"Reprints
         
     | 
| 
      
 850 
     | 
    
         
            +
                    Avengers 6 with new 9 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36451\",\"name\":\"Reprints
         
     | 
| 
      
 851 
     | 
    
         
            +
                    Avengers 7 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36452\",\"name\":\"Reprints
         
     | 
| 
      
 852 
     | 
    
         
            +
                    Avengers 7 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36895\",\"name\":\"Reprints
         
     | 
| 
      
 853 
     | 
    
         
            +
                    Avengers 8 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36896\",\"name\":\"Reprints
         
     | 
| 
      
 854 
     | 
    
         
            +
                    Avengers 8 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44335\",\"name\":\"Reprints
         
     | 
| 
      
 855 
     | 
    
         
            +
                    Avengers 9 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44336\",\"name\":\"Reprints
         
     | 
| 
      
 856 
     | 
    
         
            +
                    Avengers 9 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44690\",\"name\":\"Reprints
         
     | 
| 
      
 857 
     | 
    
         
            +
                    Avengers 10 with new 10 pg story - 1 of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44691\",\"name\":\"Reprints
         
     | 
| 
      
 858 
     | 
    
         
            +
                    Avengers 10 with new 10 pg story - 1 of 1\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":12,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2384/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15858\",\"name\":\"Avengers
         
     | 
| 
      
 859 
     | 
    
         
            +
                    Classic (2007) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15967\",\"name\":\"Avengers
         
     | 
| 
      
 860 
     | 
    
         
            +
                    Classic (2007) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16153\",\"name\":\"Avengers
         
     | 
| 
      
 861 
     | 
    
         
            +
                    Classic (2007) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16527\",\"name\":\"Avengers
         
     | 
| 
      
 862 
     | 
    
         
            +
                    Classic (2007) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16528\",\"name\":\"Avengers
         
     | 
| 
      
 863 
     | 
    
         
            +
                    Classic (2007) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17253\",\"name\":\"Avengers
         
     | 
| 
      
 864 
     | 
    
         
            +
                    Classic (2007) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17388\",\"name\":\"Avengers
         
     | 
| 
      
 865 
     | 
    
         
            +
                    Classic (2007) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17632\",\"name\":\"Avengers
         
     | 
| 
      
 866 
     | 
    
         
            +
                    Classic (2007) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20676\",\"name\":\"Avengers
         
     | 
| 
      
 867 
     | 
    
         
            +
                    Classic (2007) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20871\",\"name\":\"Avengers
         
     | 
| 
      
 868 
     | 
    
         
            +
                    Classic (2007) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21005\",\"name\":\"Avengers
         
     | 
| 
      
 869 
     | 
    
         
            +
                    Classic (2007) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21219\",\"name\":\"Avengers
         
     | 
| 
      
 870 
     | 
    
         
            +
                    Classic (2007) #12\"}],\"returned\":12},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2384/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null},{\"id\":94,\"title\":\"Avengers
         
     | 
| 
      
 871 
     | 
    
         
            +
                    Legends Vol. II: George Perez Book I (1999)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/94\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/94/avengers_legends_vol_ii_george_perez_book_i_1999?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1999,\"endYear\":1999,\"rating\":\"MARVEL
         
     | 
| 
      
 872 
     | 
    
         
            +
                    PSR\",\"type\":\"collection\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/00/4bc66bc67b321\",\"extension\":\"jpg\"},\"creators\":{\"available\":35,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/94/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 873 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 874 
     | 
    
         
            +
                    Adkins\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 875 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2010\",\"name\":\"Gene
         
     | 
| 
      
 876 
     | 
    
         
            +
                    Day\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1295\",\"name\":\"Mike
         
     | 
| 
      
 877 
     | 
    
         
            +
                    Esposito\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1326\",\"name\":\"Dan
         
     | 
| 
      
 878 
     | 
    
         
            +
                    Green\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1837\",\"name\":\"Pablo
         
     | 
| 
      
 879 
     | 
    
         
            +
                    Marcos\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/954\",\"name\":\"Gerry
         
     | 
| 
      
 880 
     | 
    
         
            +
                    Conway\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1178\",\"name\":\"Archie
         
     | 
| 
      
 881 
     | 
    
         
            +
                    Goodwin\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1746\",\"name\":\"John
         
     | 
| 
      
 882 
     | 
    
         
            +
                    Costanza\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1778\",\"name\":\"Dan
         
     | 
| 
      
 883 
     | 
    
         
            +
                    Crespi\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2195\",\"name\":\"Elaine
         
     | 
| 
      
 884 
     | 
    
         
            +
                    Heinl\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2184\",\"name\":\"Shelly
         
     | 
| 
      
 885 
     | 
    
         
            +
                    Leferman\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1759\",\"name\":\"Joe
         
     | 
| 
      
 886 
     | 
    
         
            +
                    Rosen\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1273\",\"name\":\"Scott
         
     | 
| 
      
 887 
     | 
    
         
            +
                    Edelman\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2784\",\"name\":\"David
         
     | 
| 
      
 888 
     | 
    
         
            +
                    Michelinie\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1828\",\"name\":\"Carl
         
     | 
| 
      
 889 
     | 
    
         
            +
                    Gafford\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1747\",\"name\":\"Petra
         
     | 
| 
      
 890 
     | 
    
         
            +
                    Goldberg\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 891 
     | 
    
         
            +
                    Kirby\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/103\",\"name\":\"George
         
     | 
| 
      
 892 
     | 
    
         
            +
                    Perez\",\"role\":\"penciller (cover)\"}],\"returned\":20},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/94/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 893 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011490\",\"name\":\"Hank
         
     | 
| 
      
 894 
     | 
    
         
            +
                    Pym\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009376\",\"name\":\"Jocasta\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009685\",\"name\":\"Ultron\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009697\",\"name\":\"Vision\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010348\",\"name\":\"Whirlwind\"}],\"returned\":7},\"stories\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/94/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14580\",\"name\":\"Cover
         
     | 
| 
      
 895 
     | 
    
         
            +
                    #14580\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14581\",\"name\":\"Beware
         
     | 
| 
      
 896 
     | 
    
         
            +
                    the Ant-Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14582\",\"name\":\"Cover
         
     | 
| 
      
 897 
     | 
    
         
            +
                    #14582\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14583\",\"name\":\"The
         
     | 
| 
      
 898 
     | 
    
         
            +
                    Bride of Ultron!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14652\",\"name\":\"Cover
         
     | 
| 
      
 899 
     | 
    
         
            +
                    #14652\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14653\",\"name\":\"Interlude\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14654\",\"name\":\"Cover
         
     | 
| 
      
 900 
     | 
    
         
            +
                    #14654\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14655\",\"name\":\"Assault
         
     | 
| 
      
 901 
     | 
    
         
            +
                    On a Mind Cage!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14656\",\"name\":\"Cover
         
     | 
| 
      
 902 
     | 
    
         
            +
                    #14656\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14657\",\"name\":\"The
         
     | 
| 
      
 903 
     | 
    
         
            +
                    Terrible Toll of the Taskmaster\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14670\",\"name\":\"Cover
         
     | 
| 
      
 904 
     | 
    
         
            +
                    #14670\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14671\",\"name\":\"The
         
     | 
| 
      
 905 
     | 
    
         
            +
                    Evil Reborn\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14672\",\"name\":\"Bully!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17445\",\"name\":\"Cover
         
     | 
| 
      
 906 
     | 
    
         
            +
                    #17445\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17446\",\"name\":\"No
         
     | 
| 
      
 907 
     | 
    
         
            +
                    Final Victory!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17447\",\"name\":\"Night
         
     | 
| 
      
 908 
     | 
    
         
            +
                    Vision!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17450\",\"name\":\"Cover
         
     | 
| 
      
 909 
     | 
    
         
            +
                    #17450\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17451\",\"name\":\"Spectrums
         
     | 
| 
      
 910 
     | 
    
         
            +
                    of Deceit!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37778\",\"name\":\"Cover
         
     | 
| 
      
 911 
     | 
    
         
            +
                    #37778\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37779\",\"name\":\"No
         
     | 
| 
      
 912 
     | 
    
         
            +
                    Final Victory!\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/94/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1034\",\"name\":\"Avengers
         
     | 
| 
      
 913 
     | 
    
         
            +
                    Legends Vol. II: George Perez Book I (Trade Paperback)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/94/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 914 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 915 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 916 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 917 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 918 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/2114?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 919 
     | 
    
         
            +
                body:
         
     | 
| 
      
 920 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 921 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 922 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 923 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 924 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 925 
     | 
    
         
            +
              response:
         
     | 
| 
      
 926 
     | 
    
         
            +
                status:
         
     | 
| 
      
 927 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 928 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 929 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 930 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 931 
     | 
    
         
            +
                  - d54140826e348b62c577674c75816ea296800473
         
     | 
| 
      
 932 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 933 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 934 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 935 
     | 
    
         
            +
                  - '8477'
         
     | 
| 
      
 936 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 937 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:31:07 GMT
         
     | 
| 
      
 938 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 939 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 940 
     | 
    
         
            +
                body:
         
     | 
| 
      
 941 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 942 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"d54140826e348b62c577674c75816ea296800473\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":2114,\"title\":\"All-Winners
         
     | 
| 
      
 943 
     | 
    
         
            +
                    Comics (1941 - 1947)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2114\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2114/all-winners_comics_1941_-_1947?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1941,\"endYear\":1947,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/80/4bad38841d376\",\"extension\":\"jpg\"},\"creators\":{\"available\":36,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1496\",\"name\":\"Illo\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1452\",\"name\":\"Vince
         
     | 
| 
      
 944 
     | 
    
         
            +
                    Alascia\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1456\",\"name\":\"Jack
         
     | 
| 
      
 945 
     | 
    
         
            +
                    Binder\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1494\",\"name\":\"Al
         
     | 
| 
      
 946 
     | 
    
         
            +
                    Fagaly\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1495\",\"name\":\"Louis
         
     | 
| 
      
 947 
     | 
    
         
            +
                    Ferstadt\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1356\",\"name\":\"John
         
     | 
| 
      
 948 
     | 
    
         
            +
                    Forte\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1439\",\"name\":\"Al
         
     | 
| 
      
 949 
     | 
    
         
            +
                    Gabriele\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1493\",\"name\":\"Chad
         
     | 
| 
      
 950 
     | 
    
         
            +
                    Grothkopf\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1303\",\"name\":\"Paul
         
     | 
| 
      
 951 
     | 
    
         
            +
                    Gustavson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1355\",\"name\":\"Howard
         
     | 
| 
      
 952 
     | 
    
         
            +
                    James\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1489\",\"name\":\"Jack
         
     | 
| 
      
 953 
     | 
    
         
            +
                    Alderman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1358\",\"name\":\"Al
         
     | 
| 
      
 954 
     | 
    
         
            +
                    Avison\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1440\",\"name\":\"Al
         
     | 
| 
      
 955 
     | 
    
         
            +
                    Bellman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1449\",\"name\":\"George
         
     | 
| 
      
 956 
     | 
    
         
            +
                    Klein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1499\",\"name\":\"Otto
         
     | 
| 
      
 957 
     | 
    
         
            +
                    Binder\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/408\",\"name\":\"Carl
         
     | 
| 
      
 958 
     | 
    
         
            +
                    Burgos\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/297\",\"name\":\"Bill
         
     | 
| 
      
 959 
     | 
    
         
            +
                    Everett\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1469\",\"name\":\"Bill
         
     | 
| 
      
 960 
     | 
    
         
            +
                    Finger\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 961 
     | 
    
         
            +
                    Kirby\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1445\",\"name\":\"Vince
         
     | 
| 
      
 962 
     | 
    
         
            +
                    Fago\",\"role\":\"editor\"}],\"returned\":20},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 963 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 964 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011424\",\"name\":\"Miss
         
     | 
| 
      
 965 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009535\",\"name\":\"Red
         
     | 
| 
      
 966 
     | 
    
         
            +
                    Skull\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010740\",\"name\":\"The
         
     | 
| 
      
 967 
     | 
    
         
            +
                    Winter Soldier\"}],\"returned\":7},\"stories\":{\"available\":135,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9053\",\"name\":\"Cover
         
     | 
| 
      
 968 
     | 
    
         
            +
                    #9053\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9054\",\"name\":\"Carnival
         
     | 
| 
      
 969 
     | 
    
         
            +
                    of Fiends\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9055\",\"name\":\"The
         
     | 
| 
      
 970 
     | 
    
         
            +
                    Order of the Hood\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9056\",\"name\":\"The
         
     | 
| 
      
 971 
     | 
    
         
            +
                    Case of the Hollow Men\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9057\",\"name\":\"All
         
     | 
| 
      
 972 
     | 
    
         
            +
                    Winners\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9058\",\"name\":\"[The
         
     | 
| 
      
 973 
     | 
    
         
            +
                    Torpedo Boat Terror]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9059\",\"name\":\"The
         
     | 
| 
      
 974 
     | 
    
         
            +
                    Case of the Mad Gargoyle\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9060\",\"name\":\"Cover
         
     | 
| 
      
 975 
     | 
    
         
            +
                    #9060\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9061\",\"name\":\"Bloody
         
     | 
| 
      
 976 
     | 
    
         
            +
                    Talons of the Feathered Fiends\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9062\",\"name\":\"Kioto,
         
     | 
| 
      
 977 
     | 
    
         
            +
                    the Mad Jap\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9063\",\"name\":\"Alibi
         
     | 
| 
      
 978 
     | 
    
         
            +
                    For Grim Deceit\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9064\",\"name\":\"[The
         
     | 
| 
      
 979 
     | 
    
         
            +
                    Rescue of the Partisan's Sister]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9065\",\"name\":\"The
         
     | 
| 
      
 980 
     | 
    
         
            +
                    Terror of Triple Destruction\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9066\",\"name\":\"Cover
         
     | 
| 
      
 981 
     | 
    
         
            +
                    #9066\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9067\",\"name\":\"Sky
         
     | 
| 
      
 982 
     | 
    
         
            +
                    Demons Over America\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9068\",\"name\":\"The
         
     | 
| 
      
 983 
     | 
    
         
            +
                    Case of the Yellow Fire Monster\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9069\",\"name\":\"Terror
         
     | 
| 
      
 984 
     | 
    
         
            +
                    In Tokyo\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9070\",\"name\":\"Return
         
     | 
| 
      
 985 
     | 
    
         
            +
                    Engagement\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9071\",\"name\":\"[The
         
     | 
| 
      
 986 
     | 
    
         
            +
                    Real Hitler]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9072\",\"name\":\"The
         
     | 
| 
      
 987 
     | 
    
         
            +
                    Mystery of the Ghost Killer\",\"type\":\"\"}],\"returned\":20},\"comics\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12555\",\"name\":\"All-Winners
         
     | 
| 
      
 988 
     | 
    
         
            +
                    Comics (1941) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12566\",\"name\":\"All-Winners
         
     | 
| 
      
 989 
     | 
    
         
            +
                    Comics (1941) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12568\",\"name\":\"All-Winners
         
     | 
| 
      
 990 
     | 
    
         
            +
                    Comics (1941) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12569\",\"name\":\"All-Winners
         
     | 
| 
      
 991 
     | 
    
         
            +
                    Comics (1941) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12570\",\"name\":\"All-Winners
         
     | 
| 
      
 992 
     | 
    
         
            +
                    Comics (1941) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12571\",\"name\":\"All-Winners
         
     | 
| 
      
 993 
     | 
    
         
            +
                    Comics (1941) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12572\",\"name\":\"All-Winners
         
     | 
| 
      
 994 
     | 
    
         
            +
                    Comics (1941) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12573\",\"name\":\"All-Winners
         
     | 
| 
      
 995 
     | 
    
         
            +
                    Comics (1941) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12574\",\"name\":\"All-Winners
         
     | 
| 
      
 996 
     | 
    
         
            +
                    Comics (1941) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12556\",\"name\":\"All-Winners
         
     | 
| 
      
 997 
     | 
    
         
            +
                    Comics (1941) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12557\",\"name\":\"All-Winners
         
     | 
| 
      
 998 
     | 
    
         
            +
                    Comics (1941) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12558\",\"name\":\"All-Winners
         
     | 
| 
      
 999 
     | 
    
         
            +
                    Comics (1941) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12559\",\"name\":\"All-Winners
         
     | 
| 
      
 1000 
     | 
    
         
            +
                    Comics (1941) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12560\",\"name\":\"All-Winners
         
     | 
| 
      
 1001 
     | 
    
         
            +
                    Comics (1941) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12561\",\"name\":\"All-Winners
         
     | 
| 
      
 1002 
     | 
    
         
            +
                    Comics (1941) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12562\",\"name\":\"All-Winners
         
     | 
| 
      
 1003 
     | 
    
         
            +
                    Comics (1941) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12563\",\"name\":\"All-Winners
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    Comics (1941) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12564\",\"name\":\"All-Winners
         
     | 
| 
      
 1005 
     | 
    
         
            +
                    Comics (1941) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12565\",\"name\":\"All-Winners
         
     | 
| 
      
 1006 
     | 
    
         
            +
                    Comics (1941) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12567\",\"name\":\"All-Winners
         
     | 
| 
      
 1007 
     | 
    
         
            +
                    Comics (1941) #21\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 1008 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 1009 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 1010 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 1011 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 1012 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/2114?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 1013 
     | 
    
         
            +
                body:
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 1016 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 1019 
     | 
    
         
            +
              response:
         
     | 
| 
      
 1020 
     | 
    
         
            +
                status:
         
     | 
| 
      
 1021 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 1023 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 1025 
     | 
    
         
            +
                  - d54140826e348b62c577674c75816ea296800473
         
     | 
| 
      
 1026 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 1027 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 1029 
     | 
    
         
            +
                  - '8477'
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 1031 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:31:01 GMT
         
     | 
| 
      
 1032 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 1033 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 1034 
     | 
    
         
            +
                body:
         
     | 
| 
      
 1035 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 1036 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"d54140826e348b62c577674c75816ea296800473\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":2114,\"title\":\"All-Winners
         
     | 
| 
      
 1037 
     | 
    
         
            +
                    Comics (1941 - 1947)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2114\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2114/all-winners_comics_1941_-_1947?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1941,\"endYear\":1947,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/80/4bad38841d376\",\"extension\":\"jpg\"},\"creators\":{\"available\":36,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1496\",\"name\":\"Illo\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1452\",\"name\":\"Vince
         
     | 
| 
      
 1038 
     | 
    
         
            +
                    Alascia\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1456\",\"name\":\"Jack
         
     | 
| 
      
 1039 
     | 
    
         
            +
                    Binder\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1494\",\"name\":\"Al
         
     | 
| 
      
 1040 
     | 
    
         
            +
                    Fagaly\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1495\",\"name\":\"Louis
         
     | 
| 
      
 1041 
     | 
    
         
            +
                    Ferstadt\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1356\",\"name\":\"John
         
     | 
| 
      
 1042 
     | 
    
         
            +
                    Forte\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1439\",\"name\":\"Al
         
     | 
| 
      
 1043 
     | 
    
         
            +
                    Gabriele\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1493\",\"name\":\"Chad
         
     | 
| 
      
 1044 
     | 
    
         
            +
                    Grothkopf\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1303\",\"name\":\"Paul
         
     | 
| 
      
 1045 
     | 
    
         
            +
                    Gustavson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1355\",\"name\":\"Howard
         
     | 
| 
      
 1046 
     | 
    
         
            +
                    James\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1489\",\"name\":\"Jack
         
     | 
| 
      
 1047 
     | 
    
         
            +
                    Alderman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1358\",\"name\":\"Al
         
     | 
| 
      
 1048 
     | 
    
         
            +
                    Avison\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1440\",\"name\":\"Al
         
     | 
| 
      
 1049 
     | 
    
         
            +
                    Bellman\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1449\",\"name\":\"George
         
     | 
| 
      
 1050 
     | 
    
         
            +
                    Klein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1499\",\"name\":\"Otto
         
     | 
| 
      
 1051 
     | 
    
         
            +
                    Binder\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/408\",\"name\":\"Carl
         
     | 
| 
      
 1052 
     | 
    
         
            +
                    Burgos\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/297\",\"name\":\"Bill
         
     | 
| 
      
 1053 
     | 
    
         
            +
                    Everett\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1469\",\"name\":\"Bill
         
     | 
| 
      
 1054 
     | 
    
         
            +
                    Finger\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
         
     | 
| 
      
 1055 
     | 
    
         
            +
                    Kirby\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1445\",\"name\":\"Vince
         
     | 
| 
      
 1056 
     | 
    
         
            +
                    Fago\",\"role\":\"editor\"}],\"returned\":20},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 1057 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 1058 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011424\",\"name\":\"Miss
         
     | 
| 
      
 1059 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009535\",\"name\":\"Red
         
     | 
| 
      
 1060 
     | 
    
         
            +
                    Skull\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010740\",\"name\":\"The
         
     | 
| 
      
 1061 
     | 
    
         
            +
                    Winter Soldier\"}],\"returned\":7},\"stories\":{\"available\":135,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9053\",\"name\":\"Cover
         
     | 
| 
      
 1062 
     | 
    
         
            +
                    #9053\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9054\",\"name\":\"Carnival
         
     | 
| 
      
 1063 
     | 
    
         
            +
                    of Fiends\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9055\",\"name\":\"The
         
     | 
| 
      
 1064 
     | 
    
         
            +
                    Order of the Hood\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9056\",\"name\":\"The
         
     | 
| 
      
 1065 
     | 
    
         
            +
                    Case of the Hollow Men\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9057\",\"name\":\"All
         
     | 
| 
      
 1066 
     | 
    
         
            +
                    Winners\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9058\",\"name\":\"[The
         
     | 
| 
      
 1067 
     | 
    
         
            +
                    Torpedo Boat Terror]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9059\",\"name\":\"The
         
     | 
| 
      
 1068 
     | 
    
         
            +
                    Case of the Mad Gargoyle\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9060\",\"name\":\"Cover
         
     | 
| 
      
 1069 
     | 
    
         
            +
                    #9060\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9061\",\"name\":\"Bloody
         
     | 
| 
      
 1070 
     | 
    
         
            +
                    Talons of the Feathered Fiends\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9062\",\"name\":\"Kioto,
         
     | 
| 
      
 1071 
     | 
    
         
            +
                    the Mad Jap\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9063\",\"name\":\"Alibi
         
     | 
| 
      
 1072 
     | 
    
         
            +
                    For Grim Deceit\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9064\",\"name\":\"[The
         
     | 
| 
      
 1073 
     | 
    
         
            +
                    Rescue of the Partisan's Sister]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9065\",\"name\":\"The
         
     | 
| 
      
 1074 
     | 
    
         
            +
                    Terror of Triple Destruction\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9066\",\"name\":\"Cover
         
     | 
| 
      
 1075 
     | 
    
         
            +
                    #9066\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9067\",\"name\":\"Sky
         
     | 
| 
      
 1076 
     | 
    
         
            +
                    Demons Over America\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9068\",\"name\":\"The
         
     | 
| 
      
 1077 
     | 
    
         
            +
                    Case of the Yellow Fire Monster\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9069\",\"name\":\"Terror
         
     | 
| 
      
 1078 
     | 
    
         
            +
                    In Tokyo\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9070\",\"name\":\"Return
         
     | 
| 
      
 1079 
     | 
    
         
            +
                    Engagement\",\"type\":\"text story\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9071\",\"name\":\"[The
         
     | 
| 
      
 1080 
     | 
    
         
            +
                    Real Hitler]\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/9072\",\"name\":\"The
         
     | 
| 
      
 1081 
     | 
    
         
            +
                    Mystery of the Ghost Killer\",\"type\":\"\"}],\"returned\":20},\"comics\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12555\",\"name\":\"All-Winners
         
     | 
| 
      
 1082 
     | 
    
         
            +
                    Comics (1941) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12566\",\"name\":\"All-Winners
         
     | 
| 
      
 1083 
     | 
    
         
            +
                    Comics (1941) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12568\",\"name\":\"All-Winners
         
     | 
| 
      
 1084 
     | 
    
         
            +
                    Comics (1941) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12569\",\"name\":\"All-Winners
         
     | 
| 
      
 1085 
     | 
    
         
            +
                    Comics (1941) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12570\",\"name\":\"All-Winners
         
     | 
| 
      
 1086 
     | 
    
         
            +
                    Comics (1941) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12571\",\"name\":\"All-Winners
         
     | 
| 
      
 1087 
     | 
    
         
            +
                    Comics (1941) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12572\",\"name\":\"All-Winners
         
     | 
| 
      
 1088 
     | 
    
         
            +
                    Comics (1941) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12573\",\"name\":\"All-Winners
         
     | 
| 
      
 1089 
     | 
    
         
            +
                    Comics (1941) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12574\",\"name\":\"All-Winners
         
     | 
| 
      
 1090 
     | 
    
         
            +
                    Comics (1941) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12556\",\"name\":\"All-Winners
         
     | 
| 
      
 1091 
     | 
    
         
            +
                    Comics (1941) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12557\",\"name\":\"All-Winners
         
     | 
| 
      
 1092 
     | 
    
         
            +
                    Comics (1941) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12558\",\"name\":\"All-Winners
         
     | 
| 
      
 1093 
     | 
    
         
            +
                    Comics (1941) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12559\",\"name\":\"All-Winners
         
     | 
| 
      
 1094 
     | 
    
         
            +
                    Comics (1941) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12560\",\"name\":\"All-Winners
         
     | 
| 
      
 1095 
     | 
    
         
            +
                    Comics (1941) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12561\",\"name\":\"All-Winners
         
     | 
| 
      
 1096 
     | 
    
         
            +
                    Comics (1941) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12562\",\"name\":\"All-Winners
         
     | 
| 
      
 1097 
     | 
    
         
            +
                    Comics (1941) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12563\",\"name\":\"All-Winners
         
     | 
| 
      
 1098 
     | 
    
         
            +
                    Comics (1941) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12564\",\"name\":\"All-Winners
         
     | 
| 
      
 1099 
     | 
    
         
            +
                    Comics (1941) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12565\",\"name\":\"All-Winners
         
     | 
| 
      
 1100 
     | 
    
         
            +
                    Comics (1941) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12567\",\"name\":\"All-Winners
         
     | 
| 
      
 1101 
     | 
    
         
            +
                    Comics (1941) #21\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2114/events\",\"items\":[],\"returned\":0},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 1102 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 1103 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 1104 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |