ultron 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.gitignore +3 -1
 - data/.rspec +1 -1
 - data/.travis.yml +7 -0
 - data/{LICENSE.txt → LICENSE.md} +2 -2
 - data/README.md +19 -21
 - data/Rakefile +1 -1
 - data/config/params.yaml +0 -0
 - data/config/ultron.yaml +2 -0
 - data/examples/links.rb +0 -0
 - data/lib/ultron.rb +29 -4
 - data/lib/ultron/api/character.rb +19 -0
 - data/lib/ultron/api/characters.rb +14 -0
 - data/lib/ultron/api/comic.rb +15 -0
 - data/lib/ultron/api/comics.rb +14 -0
 - data/lib/ultron/api/creator.rb +19 -0
 - data/lib/ultron/api/creators.rb +14 -0
 - data/lib/ultron/api/entities.rb +45 -0
 - data/lib/ultron/api/entity.rb +51 -0
 - data/lib/ultron/api/event.rb +15 -0
 - data/lib/ultron/api/events.rb +14 -0
 - data/lib/ultron/api/series.rb +23 -0
 - data/lib/ultron/api/serieses.rb +16 -0
 - data/lib/ultron/api/stories.rb +14 -0
 - data/lib/ultron/api/story.rb +15 -0
 - data/lib/ultron/config.rb +35 -0
 - data/lib/ultron/connection.rb +41 -0
 - data/lib/ultron/helpers.rb +25 -0
 - data/lib/ultron/version.rb +1 -1
 - data/spec/cassettes/Ultron_API_Character/should_have_a_series_set.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_an_events_set.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_name.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_sets/events.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_not_have_any_events.yml +32 -0
 - data/spec/cassettes/Ultron_API_CharacterSet/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/characters_filtered_by_comic/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_comic.yml +1862 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_event.yml +3876 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_story.yml +345 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_id.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_id.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_name.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_id.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_name.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_resourceURI.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/parameterize_the_request/should_let_us_set_multiple_parameters.yml +1595 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_comic.yml +2737 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_event.yml +7345 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_story.yml +231 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_genarate_a_list_of_characters_filtered_by_comic.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_a_list_of_characters_filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_lists_of_characters/filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_a_list_of_characters.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_openstruct_method-style_attribute_accessors.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_title.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_year.yml +46 -0
 - data/spec/cassettes/Ultron_API_ComicSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_character.yml +2059 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_creator.yml +2177 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_event.yml +1701 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_series.yml +123 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_stories.yml +499 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_story.yml +577 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_id.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_name.yml +946 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_resourceURI.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_title.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_dateRange.yml +1613 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_limit.yml +96 -0
 - data/spec/cassettes/Ultron_API_Comics/should_generate_a_list_of_comics_filtered_by_character.yml +3955 -0
 - data/spec/cassettes/Ultron_API_Comics/should_have_the_correct_first_comic.yml +2012 -0
 - data/spec/cassettes/Ultron_API_ComicsSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Creator/it_should_have_the_correct_sets/comics.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_a_comics_set.yml +2022 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_comic.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_name.yml +243 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_comic.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_event.yml +2778 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_series.yml +4555 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_story.yml +1253 -0
 - data/spec/cassettes/Ultron_API_Creators/get_a_creator_by_name/should_return_the_correct_creator.yml +30 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_fourth_creator_off_the_list/should_have_the_right_name.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_second_creator_off_the_list/should_have_the_right_name.yml +384 -0
 - data/spec/cassettes/Ultron_API_Creators/should_have_the_correct_first_comic.yml +32 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_a_list_of_creators_filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_lists_of_creators/filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_a_list_of_characters.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_first_character.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_title.yml +108 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_character.yml +5161 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_comic.yml +363 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_creator.yml +9257 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_series.yml +240 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_story.yml +375 -0
 - data/spec/cassettes/Ultron_API_Events/get_the_second_event_off_the_list/should_have_the_right_name.yml +4762 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_sets/not_series.yml +40 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_character.yml +3618 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_creator.yml +1104 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_event.yml +591 -0
 - data/spec/cassettes/Ultron_API_Serieses/get_the_third_event_off_the_list/should_have_the_right_name.yml +1780 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml +31 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_character.yml +342 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_comic.yml +110 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_creator.yml +1041 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_event.yml +846 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_series.yml +143 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_fourth_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_second_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Story/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +559 -0
 - data/spec/spec_helper.rb +3 -0
 - data/spec/support/vcr_setup.rb +17 -0
 - data/spec/ultron/api/character_spec.rb +50 -0
 - data/spec/ultron/api/comic_spec.rb +55 -0
 - data/spec/ultron/api/creator_spec.rb +50 -0
 - data/spec/ultron/api/event_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/characters_filtered_spec.rb +53 -0
 - data/spec/ultron/api/filtered_sets/comics_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/creators_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/events_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/series_filtered_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/stories_filtered_spec.rb +52 -0
 - data/spec/ultron/api/series_spec.rb +46 -0
 - data/spec/ultron/api/sets/characters_spec.rb +71 -0
 - data/spec/ultron/api/sets/comics_spec.rb +46 -0
 - data/spec/ultron/api/sets/creators_spec.rb +29 -0
 - data/spec/ultron/api/sets/events_spec.rb +26 -0
 - data/spec/ultron/api/sets/serieses_spec.rb +26 -0
 - data/spec/ultron/api/sets/stories_spec.rb +26 -0
 - data/spec/ultron/api/story_spec.rb +46 -0
 - data/spec/ultron/auth_spec.rb +13 -0
 - data/spec/ultron/config_spec.rb +16 -0
 - data/spec/ultron/connection_spec.rb +33 -0
 - data/spec/ultron/helpers_spec.rb +11 -0
 - data/ultron.gemspec +16 -11
 - metadata +346 -50
 - data/lib/ultron/characters.rb +0 -9
 - data/spec/ultron/characters_spec.rb +0 -12
 
    
        data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml
    ADDED
    
    | 
         @@ -0,0 +1,31 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/comics/5678/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 
     | 
    
         
            +
                  - '176'
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 17:40:48 GMT
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 25 
     | 
    
         
            +
                body:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 27 
     | 
    
         
            +
                  string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/comics/5678/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
         
     | 
    
        data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml
    ADDED
    
    | 
         @@ -0,0 +1,31 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/8765/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 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 17:40:33 GMT
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 25 
     | 
    
         
            +
                body:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 27 
     | 
    
         
            +
                  string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/stories/8765/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,342 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/characters/1009367/stories?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 
     | 
    
         
            +
                  - a295c33768e4a4d670c9512aa4adb53126e3d621
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '42684'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:34:42 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"a295c33768e4a4d670c9512aa4adb53126e3d621\",\"data\":{\"offset\":0,\"limit\":20,\"total\":129,\"count\":20,\"results\":[{\"id\":5872,\"title\":\"1
         
     | 
| 
      
 30 
     | 
    
         
            +
                    of 7 - 7XLS\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5872\",\"type\":\"cover\",\"modified\":\"2012-03-30T09:23:14-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9484\",\"name\":\"Steve
         
     | 
| 
      
 31 
     | 
    
         
            +
                    McNiven\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 32 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010927\",\"name\":\"Goliath
         
     | 
| 
      
 34 
     | 
    
         
            +
                    (Bill Foster)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009366\",\"name\":\"Invisible
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Woman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009459\",\"name\":\"Mr.
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Fantastic\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009492\",\"name\":\"Patriot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 41 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009608\",\"name\":\"Spider-Woman
         
     | 
| 
      
 42 
     | 
    
         
            +
                    (Jessica Drew)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":20},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":5872},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 43 
     | 
    
         
            +
                    War (2006 - 2007)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 44 
     | 
    
         
            +
                    War (2006) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 45 
     | 
    
         
            +
                    War\"}],\"returned\":1},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 46 
     | 
    
         
            +
                    War (2006) #1\"}},{\"id\":5874,\"title\":\"Cover #5874\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5874\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5874/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/856\",\"name\":\"Michael
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Turner\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5874/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 48 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010927\",\"name\":\"Goliath
         
     | 
| 
      
 50 
     | 
    
         
            +
                    (Bill Foster)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 51 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009366\",\"name\":\"Invisible
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Woman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009459\",\"name\":\"Mr.
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Fantastic\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009492\",\"name\":\"Patriot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 57 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009608\",\"name\":\"Spider-Woman
         
     | 
| 
      
 58 
     | 
    
         
            +
                    (Jessica Drew)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":20},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":5874},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 59 
     | 
    
         
            +
                    War (2006 - 2007)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5874/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4217\",\"name\":\"Civil
         
     | 
| 
      
 60 
     | 
    
         
            +
                    War (2006) #1 (Turner Variant)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5874/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4217\",\"name\":\"Civil
         
     | 
| 
      
 61 
     | 
    
         
            +
                    War (2006) #1 (Turner Variant)\"}},{\"id\":5882,\"title\":\"Cover #5882\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5882\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5882/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9484\",\"name\":\"Steve
         
     | 
| 
      
 62 
     | 
    
         
            +
                    McNiven\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5882/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 63 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 64 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010927\",\"name\":\"Goliath
         
     | 
| 
      
 65 
     | 
    
         
            +
                    (Bill Foster)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009366\",\"name\":\"Invisible
         
     | 
| 
      
 67 
     | 
    
         
            +
                    Woman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 68 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 69 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009459\",\"name\":\"Mr.
         
     | 
| 
      
 71 
     | 
    
         
            +
                    Fantastic\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009492\",\"name\":\"Patriot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 72 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009608\",\"name\":\"Spider-Woman
         
     | 
| 
      
 73 
     | 
    
         
            +
                    (Jessica Drew)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":20},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":5882},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 74 
     | 
    
         
            +
                    War (2006 - 2007)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5882/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4514\",\"name\":\"Civil
         
     | 
| 
      
 75 
     | 
    
         
            +
                    War (2006) #1 (sketch variant)\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5882/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4514\",\"name\":\"Civil
         
     | 
| 
      
 76 
     | 
    
         
            +
                    War (2006) #1 (sketch variant)\"}},{\"id\":6254,\"title\":\"3 of 5 - The Immortal
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Iron Fist\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6254\",\"type\":\"cover\",\"modified\":\"2013-06-11T12:06:49-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/6254/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/750\",\"name\":\"David
         
     | 
| 
      
 78 
     | 
    
         
            +
                    Aja\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/6254/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":6254},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1140\",\"name\":\"Immortal
         
     | 
| 
      
 80 
     | 
    
         
            +
                    Iron Fist (2006 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2943\",\"name\":\"Immortal
         
     | 
| 
      
 81 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/6254/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5869\",\"name\":\"Immortal
         
     | 
| 
      
 82 
     | 
    
         
            +
                    Iron Fist (2006) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16636\",\"name\":\"Immortal
         
     | 
| 
      
 83 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (Trade Paperback)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/6254/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5869\",\"name\":\"Immortal
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Iron Fist (2006) #3\"}},{\"id\":7703,\"title\":\"2 of 6 - Death of the Dream\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7703\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7703/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/367\",\"name\":\"Ed
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Brubaker\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8504\",\"name\":\"Frank
         
     | 
| 
      
 86 
     | 
    
         
            +
                    D'Armata\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/452\",\"name\":\"Chris
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Eliopoulos\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/374\",\"name\":\"Steve
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Epting\",\"role\":\"penciller\"}],\"returned\":4},\"characters\":{\"available\":13,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7703/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010722\",\"name\":\"Human
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Robot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009378\",\"name\":\"Jessica
         
     | 
| 
      
 92 
     | 
    
         
            +
                    Jones\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009535\",\"name\":\"Red
         
     | 
| 
      
 93 
     | 
    
         
            +
                    Skull\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009379\",\"name\":\"Rick
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Jones\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009228\",\"name\":\"Sharon
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Carter\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010898\",\"name\":\"Sin\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010795\",\"name\":\"Spider-Woman
         
     | 
| 
      
 96 
     | 
    
         
            +
                    (Charlotte Witter)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010740\",\"name\":\"The
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Winter Soldier\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":13},\"series\":{\"available\":3,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":7703},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/832\",\"name\":\"Captain
         
     | 
| 
      
 98 
     | 
    
         
            +
                    America (2004 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5061\",\"name\":\"Captain
         
     | 
| 
      
 99 
     | 
    
         
            +
                    America: The Death of Captain America Vol. 1 (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3127\",\"name\":\"Captain
         
     | 
| 
      
 100 
     | 
    
         
            +
                    America: The Death of Captain America Vol. 1 Premiere (2007)\"}],\"returned\":3},\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7703/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6152\",\"name\":\"Captain
         
     | 
| 
      
 101 
     | 
    
         
            +
                    America (2004) #26\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21424\",\"name\":\"Captain
         
     | 
| 
      
 102 
     | 
    
         
            +
                    America: The Death of Captain America Vol. 1 (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17325\",\"name\":\"Captain
         
     | 
| 
      
 103 
     | 
    
         
            +
                    America: The Death of Captain America Vol. 1 Premiere (Hardcover)\"}],\"returned\":3},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7703/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"}],\"returned\":1},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6152\",\"name\":\"Captain
         
     | 
| 
      
 104 
     | 
    
         
            +
                    America (2004) #26\"}},{\"id\":7916,\"title\":\"4 of 5 - The Immortal Iron
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Fist\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7916\",\"type\":\"cover\",\"modified\":\"2013-06-11T12:06:43-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7916/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/750\",\"name\":\"David
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Aja\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7916/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 107 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010888\",\"name\":\"Iron
         
     | 
| 
      
 108 
     | 
    
         
            +
                    Fist (Orson Randall)\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":7916},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1140\",\"name\":\"Immortal
         
     | 
| 
      
 109 
     | 
    
         
            +
                    Iron Fist (2006 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2943\",\"name\":\"Immortal
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7916/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6179\",\"name\":\"Immortal
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Iron Fist (2006) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16636\",\"name\":\"Immortal
         
     | 
| 
      
 112 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (Trade Paperback)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/7916/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6179\",\"name\":\"Immortal
         
     | 
| 
      
 113 
     | 
    
         
            +
                    Iron Fist (2006) #4\"}},{\"id\":8365,\"title\":\"4 of 5 - The Immortal Iron
         
     | 
| 
      
 114 
     | 
    
         
            +
                    Fist\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8365\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8365/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/750\",\"name\":\"David
         
     | 
| 
      
 115 
     | 
    
         
            +
                    Aja\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8365/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 116 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010888\",\"name\":\"Iron
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Fist (Orson Randall)\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":8365},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1140\",\"name\":\"Immortal
         
     | 
| 
      
 118 
     | 
    
         
            +
                    Iron Fist (2006 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2943\",\"name\":\"Immortal
         
     | 
| 
      
 119 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8365/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6179\",\"name\":\"Immortal
         
     | 
| 
      
 120 
     | 
    
         
            +
                    Iron Fist (2006) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16636\",\"name\":\"Immortal
         
     | 
| 
      
 121 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (Trade Paperback)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8365/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6179\",\"name\":\"Immortal
         
     | 
| 
      
 122 
     | 
    
         
            +
                    Iron Fist (2006) #4\"}},{\"id\":8701,\"title\":\"1 of 2 - Story A\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8701\",\"type\":\"cover\",\"modified\":\"2013-06-11T12:11:57-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8701/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/750\",\"name\":\"David
         
     | 
| 
      
 123 
     | 
    
         
            +
                    Aja\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8701/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":8701},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1140\",\"name\":\"Immortal
         
     | 
| 
      
 125 
     | 
    
         
            +
                    Iron Fist (2006 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2943\",\"name\":\"Immortal
         
     | 
| 
      
 126 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8701/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13487\",\"name\":\"Immortal
         
     | 
| 
      
 127 
     | 
    
         
            +
                    Iron Fist (2006) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16636\",\"name\":\"Immortal
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Iron Fist Vol. 1: The Last Iron Fist Story (Trade Paperback)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/8701/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13487\",\"name\":\"Immortal
         
     | 
| 
      
 129 
     | 
    
         
            +
                    Iron Fist (2006) #6\"}},{\"id\":15889,\"title\":\"Daredevil Meets Power Man
         
     | 
| 
      
 130 
     | 
    
         
            +
                    & Iron Fist!\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15889\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15889/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/570\",\"name\":\"Klaus
         
     | 
| 
      
 131 
     | 
    
         
            +
                    Janson\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/17\",\"name\":\"Frank
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Miller\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1226\",\"name\":\"Dennis
         
     | 
| 
      
 133 
     | 
    
         
            +
                    Oneil\",\"role\":\"editor\"}],\"returned\":3},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15889/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 134 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":15889},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2002\",\"name\":\"Daredevil
         
     | 
| 
      
 135 
     | 
    
         
            +
                    (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1911\",\"name\":\"Daredevil
         
     | 
| 
      
 136 
     | 
    
         
            +
                    by Frank Miller & Klaus Janson (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15889/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8160\",\"name\":\"Daredevil
         
     | 
| 
      
 137 
     | 
    
         
            +
                    (1963) #178\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5998\",\"name\":\"Daredevil
         
     | 
| 
      
 138 
     | 
    
         
            +
                    by Frank Miller & Klaus Janson (Hardcover)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15889/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8160\",\"name\":\"Daredevil
         
     | 
| 
      
 139 
     | 
    
         
            +
                    (1963) #178\"}},{\"id\":15891,\"title\":\"\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15891\",\"type\":\"promo\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15891/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2050\",\"name\":\"Denys
         
     | 
| 
      
 140 
     | 
    
         
            +
                    Cowan\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/399\",\"name\":\"Jim
         
     | 
| 
      
 141 
     | 
    
         
            +
                    Novak\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1226\",\"name\":\"Dennis
         
     | 
| 
      
 142 
     | 
    
         
            +
                    Oneil\",\"role\":\"editor\"}],\"returned\":3},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15891/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 143 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":15891},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2002\",\"name\":\"Daredevil
         
     | 
| 
      
 144 
     | 
    
         
            +
                    (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1911\",\"name\":\"Daredevil
         
     | 
| 
      
 145 
     | 
    
         
            +
                    by Frank Miller & Klaus Janson (2007)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15891/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8160\",\"name\":\"Daredevil
         
     | 
| 
      
 146 
     | 
    
         
            +
                    (1963) #178\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5998\",\"name\":\"Daredevil
         
     | 
| 
      
 147 
     | 
    
         
            +
                    by Frank Miller & Klaus Janson (Hardcover)\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/15891/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8160\",\"name\":\"Daredevil
         
     | 
| 
      
 148 
     | 
    
         
            +
                    (1963) #178\"}},{\"id\":18749,\"title\":\"Days of Rage\",\"description\":\"Hulk
         
     | 
| 
      
 149 
     | 
    
         
            +
                    returns to savagery and is exiled from Earth.\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18749\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/18749/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/105\",\"name\":\"Sal
         
     | 
| 
      
 150 
     | 
    
         
            +
                    Buscema\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/966\",\"name\":\"Bill
         
     | 
| 
      
 151 
     | 
    
         
            +
                    Mantlo\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/399\",\"name\":\"Jim
         
     | 
| 
      
 152 
     | 
    
         
            +
                    Novak\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1863\",\"name\":\"Carl
         
     | 
| 
      
 153 
     | 
    
         
            +
                    Potts\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1832\",\"name\":\"Bob
         
     | 
| 
      
 154 
     | 
    
         
            +
                    Sharen\",\"role\":\"colorist\"}],\"returned\":5},\"characters\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/18749/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 155 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"name\":\"Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 156 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009562\",\"name\":\"Scarlet
         
     | 
| 
      
 158 
     | 
    
         
            +
                    Witch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009664\",\"name\":\"Thor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009707\",\"name\":\"Wasp\"}],\"returned\":8},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":18749},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4943\",\"name\":\"Hulk
         
     | 
| 
      
 159 
     | 
    
         
            +
                    Vs. the Marvel Universe (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
         
     | 
| 
      
 160 
     | 
    
         
            +
                    Hulk (1962 - 1999)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/18749/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21315\",\"name\":\"Hulk
         
     | 
| 
      
 161 
     | 
    
         
            +
                    Vs. the Marvel Universe (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9111\",\"name\":\"Incredible
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Hulk (1962) #300\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/18749/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9111\",\"name\":\"Incredible
         
     | 
| 
      
 163 
     | 
    
         
            +
                    Hulk (1962) #300\"}},{\"id\":19901,\"title\":\"Cover #19901\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19901\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19901/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 164 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 165 
     | 
    
         
            +
                    Kane\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 166 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 167 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":4},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19901/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 168 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19901},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1313\",\"name\":\"Essential
         
     | 
| 
      
 169 
     | 
    
         
            +
                    Iron Fist Vol. 1 (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 170 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19901/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1327\",\"name\":\"Essential
         
     | 
| 
      
 171 
     | 
    
         
            +
                    Iron Fist Vol. 1 (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10201\",\"name\":\"Marvel
         
     | 
| 
      
 172 
     | 
    
         
            +
                    Premiere (1972) #15\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19901/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10201\",\"name\":\"Marvel
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Premiere (1972) #15\"}},{\"id\":19902,\"title\":\"The Fury of Iron Fist!\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19902\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19902/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 174 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6631\",\"name\":\"L.P.
         
     | 
| 
      
 175 
     | 
    
         
            +
                    Gregory\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 176 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 177 
     | 
    
         
            +
                    Kane\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1872\",\"name\":\"Glynis
         
     | 
| 
      
 178 
     | 
    
         
            +
                    Oliver\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 179 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":6},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19902/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 180 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":2,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19902},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1313\",\"name\":\"Essential
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Iron Fist Vol. 1 (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 182 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":2},\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19902/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1327\",\"name\":\"Essential
         
     | 
| 
      
 183 
     | 
    
         
            +
                    Iron Fist Vol. 1 (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10201\",\"name\":\"Marvel
         
     | 
| 
      
 184 
     | 
    
         
            +
                    Premiere (1972) #15\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19902/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10201\",\"name\":\"Marvel
         
     | 
| 
      
 185 
     | 
    
         
            +
                    Premiere (1972) #15\"}},{\"id\":19903,\"title\":\"Cover #19903\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19903\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19903/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/570\",\"name\":\"Klaus
         
     | 
| 
      
 186 
     | 
    
         
            +
                    Janson\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 187 
     | 
    
         
            +
                    Kane\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 188 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 189 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":4},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19903/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 190 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19903},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 191 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19903/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10202\",\"name\":\"Marvel
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Premiere (1972) #16\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19903/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10202\",\"name\":\"Marvel
         
     | 
| 
      
 193 
     | 
    
         
            +
                    Premiere (1972) #16\"}},{\"id\":19904,\"title\":\"Heart of the Dragon!\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19904\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19904/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6631\",\"name\":\"L.P.
         
     | 
| 
      
 195 
     | 
    
         
            +
                    Gregory\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/42\",\"name\":\"Larry
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Hama\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1872\",\"name\":\"Glynis
         
     | 
| 
      
 198 
     | 
    
         
            +
                    Oliver\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Thomas\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/967\",\"name\":\"Len
         
     | 
| 
      
 200 
     | 
    
         
            +
                    Wein\",\"role\":\"writer\"}],\"returned\":7},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19904/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 201 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19904},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19904/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10202\",\"name\":\"Marvel
         
     | 
| 
      
 203 
     | 
    
         
            +
                    Premiere (1972) #16\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19904/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10202\",\"name\":\"Marvel
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Premiere (1972) #16\"}},{\"id\":19905,\"title\":\"Citadel of Vengeance!\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19905\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19905/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 206 
     | 
    
         
            +
                    Kane\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 207 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":4},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19905/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19905},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 210 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19905/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10203\",\"name\":\"Marvel
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Premiere (1972) #17\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19905/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10203\",\"name\":\"Marvel
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Premiere (1972) #17\"}},{\"id\":19906,\"title\":\"Citadel On the Edge of Vengeance\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19906\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19906/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 213 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1747\",\"name\":\"Petra
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Goldberg\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/42\",\"name\":\"Larry
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Hama\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/223\",\"name\":\"Doug
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Moench\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1548\",\"name\":\"Artie
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Simek\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 218 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":6},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19906/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19906},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19906/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10203\",\"name\":\"Marvel
         
     | 
| 
      
 221 
     | 
    
         
            +
                    Premiere (1972) #17\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19906/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10203\",\"name\":\"Marvel
         
     | 
| 
      
 222 
     | 
    
         
            +
                    Premiere (1972) #17\"}},{\"id\":19907,\"title\":\"Cover #19907\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19907\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19907/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1186\",\"name\":\"Jack
         
     | 
| 
      
 223 
     | 
    
         
            +
                    Abel\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/148\",\"name\":\"Gil
         
     | 
| 
      
 224 
     | 
    
         
            +
                    Kane\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1754\",\"name\":\"Gaspar
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Saladino\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 226 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":4},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19907/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 227 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19907},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 228 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19907/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10204\",\"name\":\"Marvel
         
     | 
| 
      
 229 
     | 
    
         
            +
                    Premiere (1972) #18\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19907/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10204\",\"name\":\"Marvel
         
     | 
| 
      
 230 
     | 
    
         
            +
                    Premiere (1972) #18\"}},{\"id\":19908,\"title\":\"Lair of Shattered Vengeance!\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19908\",\"type\":\"story\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19908/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/404\",\"name\":\"Dick
         
     | 
| 
      
 231 
     | 
    
         
            +
                    Giordano\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1747\",\"name\":\"Petra
         
     | 
| 
      
 232 
     | 
    
         
            +
                    Goldberg\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/42\",\"name\":\"Larry
         
     | 
| 
      
 233 
     | 
    
         
            +
                    Hama\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/223\",\"name\":\"Doug
         
     | 
| 
      
 234 
     | 
    
         
            +
                    Moench\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1548\",\"name\":\"Artie
         
     | 
| 
      
 235 
     | 
    
         
            +
                    Simek\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 236 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":6},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19908/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 237 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19908},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 238 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19908/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10204\",\"name\":\"Marvel
         
     | 
| 
      
 239 
     | 
    
         
            +
                    Premiere (1972) #18\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19908/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10204\",\"name\":\"Marvel
         
     | 
| 
      
 240 
     | 
    
         
            +
                    Premiere (1972) #18\"}},{\"id\":19909,\"title\":\"Cover #19909\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19909\",\"type\":\"cover\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":null,\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19909/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/435\",\"name\":\"Al
         
     | 
| 
      
 241 
     | 
    
         
            +
                    Milgrom\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/146\",\"name\":\"Jim
         
     | 
| 
      
 242 
     | 
    
         
            +
                    Starlin\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2909\",\"name\":\"Roy
         
     | 
| 
      
 243 
     | 
    
         
            +
                    Thomas\",\"role\":\"editor\"}],\"returned\":3},\"characters\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19909/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 244 
     | 
    
         
            +
                    Fist (Danny Rand)\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":19909},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
         
     | 
| 
      
 245 
     | 
    
         
            +
                    Premiere (1972 - 1981)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19909/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10205\",\"name\":\"Marvel
         
     | 
| 
      
 246 
     | 
    
         
            +
                    Premiere (1972) #19\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/19909/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10205\",\"name\":\"Marvel
         
     | 
| 
      
 247 
     | 
    
         
            +
                    Premiere (1972) #19\"}}]}}"
         
     | 
| 
      
 248 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 249 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 250 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 251 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 252 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/5872?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 253 
     | 
    
         
            +
                body:
         
     | 
| 
      
 254 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 255 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 256 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 257 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 258 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 259 
     | 
    
         
            +
              response:
         
     | 
| 
      
 260 
     | 
    
         
            +
                status:
         
     | 
| 
      
 261 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 262 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 263 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 264 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 265 
     | 
    
         
            +
                  - b82b02b230b9e3c7999e4432ff6ada997cbda5ae
         
     | 
| 
      
 266 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 267 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 268 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 269 
     | 
    
         
            +
                  - '3349'
         
     | 
| 
      
 270 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 271 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:34:37 GMT
         
     | 
| 
      
 272 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 273 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 274 
     | 
    
         
            +
                body:
         
     | 
| 
      
 275 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 276 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"b82b02b230b9e3c7999e4432ff6ada997cbda5ae\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":5872,\"title\":\"1
         
     | 
| 
      
 277 
     | 
    
         
            +
                    of 7 - 7XLS\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5872\",\"type\":\"cover\",\"modified\":\"2012-03-30T09:23:14-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9484\",\"name\":\"Steve
         
     | 
| 
      
 278 
     | 
    
         
            +
                    McNiven\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 279 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 280 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010927\",\"name\":\"Goliath
         
     | 
| 
      
 281 
     | 
    
         
            +
                    (Bill Foster)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 282 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009366\",\"name\":\"Invisible
         
     | 
| 
      
 283 
     | 
    
         
            +
                    Woman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 284 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 285 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 286 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009459\",\"name\":\"Mr.
         
     | 
| 
      
 287 
     | 
    
         
            +
                    Fantastic\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009492\",\"name\":\"Patriot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 288 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009608\",\"name\":\"Spider-Woman
         
     | 
| 
      
 289 
     | 
    
         
            +
                    (Jessica Drew)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":20},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":5872},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 290 
     | 
    
         
            +
                    War (2006 - 2007)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 291 
     | 
    
         
            +
                    War (2006) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 292 
     | 
    
         
            +
                    War\"}],\"returned\":1},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 293 
     | 
    
         
            +
                    War (2006) #1\"}}]}}"
         
     | 
| 
      
 294 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 295 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 296 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 297 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 298 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/5872?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 299 
     | 
    
         
            +
                body:
         
     | 
| 
      
 300 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 301 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 302 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 303 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 304 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 305 
     | 
    
         
            +
              response:
         
     | 
| 
      
 306 
     | 
    
         
            +
                status:
         
     | 
| 
      
 307 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 308 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 309 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 310 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 311 
     | 
    
         
            +
                  - b82b02b230b9e3c7999e4432ff6ada997cbda5ae
         
     | 
| 
      
 312 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 313 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 314 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 315 
     | 
    
         
            +
                  - '3349'
         
     | 
| 
      
 316 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 317 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:34:37 GMT
         
     | 
| 
      
 318 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 319 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 320 
     | 
    
         
            +
                body:
         
     | 
| 
      
 321 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 322 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"b82b02b230b9e3c7999e4432ff6ada997cbda5ae\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":5872,\"title\":\"1
         
     | 
| 
      
 323 
     | 
    
         
            +
                    of 7 - 7XLS\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5872\",\"type\":\"cover\",\"modified\":\"2012-03-30T09:23:14-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9484\",\"name\":\"Steve
         
     | 
| 
      
 324 
     | 
    
         
            +
                    McNiven\",\"role\":\"penciller (cover)\"}],\"returned\":1},\"characters\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 325 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009297\",\"name\":\"Falcon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009299\",\"name\":\"Fantastic
         
     | 
| 
      
 326 
     | 
    
         
            +
                    Four\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010927\",\"name\":\"Goliath
         
     | 
| 
      
 327 
     | 
    
         
            +
                    (Bill Foster)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
         
     | 
| 
      
 328 
     | 
    
         
            +
                    Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009366\",\"name\":\"Invisible
         
     | 
| 
      
 329 
     | 
    
         
            +
                    Woman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009367\",\"name\":\"Iron
         
     | 
| 
      
 330 
     | 
    
         
            +
                    Fist (Danny Rand)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009368\",\"name\":\"Iron
         
     | 
| 
      
 331 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009215\",\"name\":\"Luke
         
     | 
| 
      
 332 
     | 
    
         
            +
                    Cage\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009459\",\"name\":\"Mr.
         
     | 
| 
      
 333 
     | 
    
         
            +
                    Fantastic\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009492\",\"name\":\"Patriot\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 334 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009608\",\"name\":\"Spider-Woman
         
     | 
| 
      
 335 
     | 
    
         
            +
                    (Jessica Drew)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009662\",\"name\":\"Thing\"}],\"returned\":20},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":5872},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 336 
     | 
    
         
            +
                    War (2006 - 2007)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 337 
     | 
    
         
            +
                    War (2006) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/5872/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 338 
     | 
    
         
            +
                    War\"}],\"returned\":1},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4216\",\"name\":\"Civil
         
     | 
| 
      
 339 
     | 
    
         
            +
                    War (2006) #1\"}}]}}"
         
     | 
| 
      
 340 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 341 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 342 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,110 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/comics/41540/stories?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 
     | 
    
         
            +
                  - 71c83e4b640e4dd931f8a1ada9cf028ce0f7f97e
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '2704'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:37:10 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"71c83e4b640e4dd931f8a1ada9cf028ce0f7f97e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":2,\"count\":2,\"results\":[{\"id\":93966,\"title\":\"Cover
         
     | 
| 
      
 30 
     | 
    
         
            +
                    #93966\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93966\",\"type\":\"cover\",\"modified\":\"2012-03-28T10:09:05-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Baker\",\"role\":\"artist\"}],\"returned\":1},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/characters\",\"items\":[],\"returned\":0},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":93966},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15482\",\"name\":\"Deadpool
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Max 2 (2011 - 2012)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Max 2 (2011) #5\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Max 2 (2011) #5\"}},{\"id\":93967,\"title\":\"Interior #93967\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93967\",\"type\":\"story\",\"modified\":\"2012-03-28T10:08:29-0400\",\"thumbnail\":null,\"creators\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93967/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Baker\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1227\",\"name\":\"David
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Lapham\",\"role\":\"writer\"}],\"returned\":2},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93967/characters\",\"items\":[],\"returned\":0},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":93967},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15482\",\"name\":\"Deadpool
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Max 2 (2011 - 2012)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93967/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Max 2 (2011) #5\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93967/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Max 2 (2011) #5\"}}]}}"
         
     | 
| 
      
 40 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 41 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 42 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 43 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 44 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/93966?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 45 
     | 
    
         
            +
                body:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 47 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 48 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 51 
     | 
    
         
            +
              response:
         
     | 
| 
      
 52 
     | 
    
         
            +
                status:
         
     | 
| 
      
 53 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 54 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 55 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 56 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - 9361e25726d313e4f2b1bc2af5f566568ce71f4d
         
     | 
| 
      
 58 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 60 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '1367'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:37:11 GMT
         
     | 
| 
      
 64 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 66 
     | 
    
         
            +
                body:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 68 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9361e25726d313e4f2b1bc2af5f566568ce71f4d\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":93966,\"title\":\"Cover
         
     | 
| 
      
 69 
     | 
    
         
            +
                    #93966\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93966\",\"type\":\"cover\",\"modified\":\"2012-03-28T10:09:05-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Baker\",\"role\":\"artist\"}],\"returned\":1},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/characters\",\"items\":[],\"returned\":0},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":93966},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15482\",\"name\":\"Deadpool
         
     | 
| 
      
 71 
     | 
    
         
            +
                    Max 2 (2011 - 2012)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Max 2 (2011) #5\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Max 2 (2011) #5\"}}]}}"
         
     | 
| 
      
 74 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 75 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 76 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 77 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 78 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/93966?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 79 
     | 
    
         
            +
                body:
         
     | 
| 
      
 80 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 81 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 82 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 84 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 85 
     | 
    
         
            +
              response:
         
     | 
| 
      
 86 
     | 
    
         
            +
                status:
         
     | 
| 
      
 87 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 88 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 89 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 91 
     | 
    
         
            +
                  - 9361e25726d313e4f2b1bc2af5f566568ce71f4d
         
     | 
| 
      
 92 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 93 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 94 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 95 
     | 
    
         
            +
                  - '1367'
         
     | 
| 
      
 96 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 97 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:37:17 GMT
         
     | 
| 
      
 98 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 99 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 100 
     | 
    
         
            +
                body:
         
     | 
| 
      
 101 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 102 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9361e25726d313e4f2b1bc2af5f566568ce71f4d\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":93966,\"title\":\"Cover
         
     | 
| 
      
 103 
     | 
    
         
            +
                    #93966\",\"description\":\"\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/93966\",\"type\":\"cover\",\"modified\":\"2012-03-28T10:09:05-0400\",\"thumbnail\":null,\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/300\",\"name\":\"Kyle
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Baker\",\"role\":\"artist\"}],\"returned\":1},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/characters\",\"items\":[],\"returned\":0},\"series\":{\"available\":1,\"collectionURI\":{\"service\":\"comic_storySeries\",\"id\":93966},\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15482\",\"name\":\"Deadpool
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Max 2 (2011 - 2012)\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Max 2 (2011) #5\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/stories/93966/events\",\"items\":[],\"returned\":0},\"originalIssue\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41540\",\"name\":\"Deadpool
         
     | 
| 
      
 107 
     | 
    
         
            +
                    Max 2 (2011) #5\"}}]}}"
         
     | 
| 
      
 108 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 109 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 110 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |