ultron 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.gitignore +3 -1
 - data/.rspec +1 -1
 - data/.travis.yml +7 -0
 - data/{LICENSE.txt → LICENSE.md} +2 -2
 - data/README.md +19 -21
 - data/Rakefile +1 -1
 - data/config/params.yaml +0 -0
 - data/config/ultron.yaml +2 -0
 - data/examples/links.rb +0 -0
 - data/lib/ultron.rb +29 -4
 - data/lib/ultron/api/character.rb +19 -0
 - data/lib/ultron/api/characters.rb +14 -0
 - data/lib/ultron/api/comic.rb +15 -0
 - data/lib/ultron/api/comics.rb +14 -0
 - data/lib/ultron/api/creator.rb +19 -0
 - data/lib/ultron/api/creators.rb +14 -0
 - data/lib/ultron/api/entities.rb +45 -0
 - data/lib/ultron/api/entity.rb +51 -0
 - data/lib/ultron/api/event.rb +15 -0
 - data/lib/ultron/api/events.rb +14 -0
 - data/lib/ultron/api/series.rb +23 -0
 - data/lib/ultron/api/serieses.rb +16 -0
 - data/lib/ultron/api/stories.rb +14 -0
 - data/lib/ultron/api/story.rb +15 -0
 - data/lib/ultron/config.rb +35 -0
 - data/lib/ultron/connection.rb +41 -0
 - data/lib/ultron/helpers.rb +25 -0
 - data/lib/ultron/version.rb +1 -1
 - data/spec/cassettes/Ultron_API_Character/should_have_a_series_set.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_an_events_set.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_name.yml +88 -0
 - data/spec/cassettes/Ultron_API_Character/should_have_the_correct_sets/events.yml +32 -0
 - data/spec/cassettes/Ultron_API_Character/should_not_have_any_events.yml +32 -0
 - data/spec/cassettes/Ultron_API_CharacterSet/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/characters_filtered_by_comic/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_comic.yml +1862 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_event.yml +3876 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_story.yml +345 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_id.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml +114 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_id.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_name.yml +99 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_id.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_name.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_resourceURI.yml +644 -0
 - data/spec/cassettes/Ultron_API_Characters/parameterize_the_request/should_let_us_set_multiple_parameters.yml +1595 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_comic.yml +2737 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_event.yml +7345 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_series.yml +743 -0
 - data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_story.yml +231 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_genarate_a_list_of_characters_filtered_by_comic.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_have_the_correct_first_character.yml +1616 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_a_list_of_characters_filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Characters/should_not_generate_lists_of_characters/filtered_by_creator.yml +31 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_a_list_of_characters.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_openstruct_method-style_attribute_accessors.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_title.yml +46 -0
 - data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_year.yml +46 -0
 - data/spec/cassettes/Ultron_API_ComicSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_character.yml +2059 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_creator.yml +2177 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_event.yml +1701 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_series.yml +123 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_stories.yml +499 -0
 - data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_story.yml +577 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_id.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_name.yml +946 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_resourceURI.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_title.yml +1039 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_dateRange.yml +1613 -0
 - data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_limit.yml +96 -0
 - data/spec/cassettes/Ultron_API_Comics/should_generate_a_list_of_comics_filtered_by_character.yml +3955 -0
 - data/spec/cassettes/Ultron_API_Comics/should_have_the_correct_first_comic.yml +2012 -0
 - data/spec/cassettes/Ultron_API_ComicsSet/should_have_the_correct_first_comic.yml +2013 -0
 - data/spec/cassettes/Ultron_API_Creator/it_should_have_the_correct_sets/comics.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_a_comics_set.yml +2022 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_comic.yml +2029 -0
 - data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_name.yml +243 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_comic.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_event.yml +2778 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_series.yml +4555 -0
 - data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_story.yml +1253 -0
 - data/spec/cassettes/Ultron_API_Creators/get_a_creator_by_name/should_return_the_correct_creator.yml +30 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_fourth_creator_off_the_list/should_have_the_right_name.yml +1205 -0
 - data/spec/cassettes/Ultron_API_Creators/get_the_second_creator_off_the_list/should_have_the_right_name.yml +384 -0
 - data/spec/cassettes/Ultron_API_Creators/should_have_the_correct_first_comic.yml +32 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_a_list_of_creators_filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Creators/should_not_generate_lists_of_creators/filtered_by_character.yml +31 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_a_list_of_characters.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_first_character.yml +195 -0
 - data/spec/cassettes/Ultron_API_Event/should_have_the_correct_title.yml +108 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_character.yml +5161 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_comic.yml +363 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_creator.yml +9257 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_series.yml +240 -0
 - data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_story.yml +375 -0
 - data/spec/cassettes/Ultron_API_Events/get_the_second_event_off_the_list/should_have_the_right_name.yml +4762 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_sets/not_series.yml +40 -0
 - data/spec/cassettes/Ultron_API_Series/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_character.yml +3618 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_creator.yml +1104 -0
 - data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_event.yml +591 -0
 - data/spec/cassettes/Ultron_API_Serieses/get_the_third_event_off_the_list/should_have_the_right_name.yml +1780 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml +31 -0
 - data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml +31 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_character.yml +342 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_comic.yml +110 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_creator.yml +1041 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_event.yml +846 -0
 - data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_series.yml +143 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_fourth_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Stories/get_the_second_story_off_the_list/should_have_the_right_name.yml +686 -0
 - data/spec/cassettes/Ultron_API_Story/should_have_the_correct_title.yml +40 -0
 - data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +559 -0
 - data/spec/spec_helper.rb +3 -0
 - data/spec/support/vcr_setup.rb +17 -0
 - data/spec/ultron/api/character_spec.rb +50 -0
 - data/spec/ultron/api/comic_spec.rb +55 -0
 - data/spec/ultron/api/creator_spec.rb +50 -0
 - data/spec/ultron/api/event_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/characters_filtered_spec.rb +53 -0
 - data/spec/ultron/api/filtered_sets/comics_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/creators_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/events_filtered_spec.rb +51 -0
 - data/spec/ultron/api/filtered_sets/series_filtered_spec.rb +50 -0
 - data/spec/ultron/api/filtered_sets/stories_filtered_spec.rb +52 -0
 - data/spec/ultron/api/series_spec.rb +46 -0
 - data/spec/ultron/api/sets/characters_spec.rb +71 -0
 - data/spec/ultron/api/sets/comics_spec.rb +46 -0
 - data/spec/ultron/api/sets/creators_spec.rb +29 -0
 - data/spec/ultron/api/sets/events_spec.rb +26 -0
 - data/spec/ultron/api/sets/serieses_spec.rb +26 -0
 - data/spec/ultron/api/sets/stories_spec.rb +26 -0
 - data/spec/ultron/api/story_spec.rb +46 -0
 - data/spec/ultron/auth_spec.rb +13 -0
 - data/spec/ultron/config_spec.rb +16 -0
 - data/spec/ultron/connection_spec.rb +33 -0
 - data/spec/ultron/helpers_spec.rb +11 -0
 - data/ultron.gemspec +16 -11
 - metadata +346 -50
 - data/lib/ultron/characters.rb +0 -9
 - data/spec/ultron/characters_spec.rb +0 -12
 
| 
         @@ -0,0 +1,240 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/489/events?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 
     | 
    
         
            +
                  - 0773993d6ae2c5af918d7919ac09452994365b1e
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '7903'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:22:16 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"0773993d6ae2c5af918d7919ac09452994365b1e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":32,\"title\":\"Kings
         
     | 
| 
      
 30 
     | 
    
         
            +
                    of Pain\",\"description\":\"The terrorist organization A.I.M. seek to resurrect
         
     | 
| 
      
 31 
     | 
    
         
            +
                    the powerful reality-altering mutant named Proteus, and it's up to the various
         
     | 
| 
      
 32 
     | 
    
         
            +
                    X-teams and the New Warriors to stop them.\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/32/kings_of_pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Kings_of_Pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-10-18T12:39:11-0400\",\"start\":\"1991-01-01
         
     | 
| 
      
 33 
     | 
    
         
            +
                    00:00:00\",\"end\":\"1992-05-11 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/d/60/51c9e88b7fbd9\",\"extension\":\"jpg\"},\"creators\":{\"available\":25,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/435\",\"name\":\"Al
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Milgrom\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1914\",\"name\":\"Dan
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Panosian\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/939\",\"name\":\"Joe
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Rubinstein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1279\",\"name\":\"Jon
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/175\",\"name\":\"Andy
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Kubert\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/571\",\"name\":\"Rob
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Liefeld\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3459\",\"name\":\"Judy
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 42 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/567\",\"name\":\"Neil
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Gaiman\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6001\",\"name\":\"Fabian
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Nacieza\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1909\",\"name\":\"Steve
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Buccellato\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1224\",\"name\":\"Marie
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Javins\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5815\",\"name\":\"Steven
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Butler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9565\",\"name\":\"Tom
         
     | 
| 
      
 48 
     | 
    
         
            +
                    DeFalco\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2099\",\"name\":\"Suzanne
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Gaffney\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/375\",\"name\":\"Bob
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Harras\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/566\",\"name\":\"Scott
         
     | 
| 
      
 51 
     | 
    
         
            +
                    McKowen\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1926\",\"name\":\"Mike
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Mignola\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1759\",\"name\":\"Joe
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Rosen\",\"role\":\"letterer\"}],\"returned\":20},\"characters\":{\"available\":31,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
         
     | 
| 
      
 54 
     | 
    
         
            +
                    (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010366\",\"name\":\"Boom
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Boom\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009219\",\"name\":\"Cannonball\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009223\",\"name\":\"Captain
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Britain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011213\",\"name\":\"Feral\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009306\",\"name\":\"Firestar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011055\",\"name\":\"Gideon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009399\",\"name\":\"Legion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009427\",\"name\":\"Marvel
         
     | 
| 
      
 57 
     | 
    
         
            +
                    Boy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011056\",\"name\":\"Multiple
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009465\",\"name\":\"Mystique\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009469\",\"name\":\"Namorita\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011336\",\"name\":\"New
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Mutants\"}],\"returned\":20},\"stories\":{\"available\":14,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2629\",\"name\":\"1602
         
     | 
| 
      
 60 
     | 
    
         
            +
                    #7\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2630\",\"name\":\"1602
         
     | 
| 
      
 61 
     | 
    
         
            +
                    #7\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21637\",\"name\":\"Cover
         
     | 
| 
      
 62 
     | 
    
         
            +
                    #21637\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21638\",\"name\":\"\",\"type\":\"table
         
     | 
| 
      
 63 
     | 
    
         
            +
                    of contents\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21639\",\"name\":\"Pawns
         
     | 
| 
      
 64 
     | 
    
         
            +
                    of Senescence\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21640\",\"name\":\"The
         
     | 
| 
      
 65 
     | 
    
         
            +
                    First Cut\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21641\",\"name\":\"Close
         
     | 
| 
      
 66 
     | 
    
         
            +
                    Encounters of the Mutant Kind\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21642\",\"name\":\"New
         
     | 
| 
      
 67 
     | 
    
         
            +
                    Mutants Organizational Chart\",\"type\":\"feature\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21643\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21644\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51883\",\"name\":\"Kings
         
     | 
| 
      
 68 
     | 
    
         
            +
                    of Pain Part 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51884\",\"name\":\"King
         
     | 
| 
      
 69 
     | 
    
         
            +
                    of Pain\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51885\",\"name\":\"The
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Killing Stroke Part Three: Sacrificial Lambs\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51886\",\"name\":\"Tribute
         
     | 
| 
      
 71 
     | 
    
         
            +
                    The Third\",\"type\":\"interiorStory\"}],\"returned\":14},\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/145\",\"name\":\"1602
         
     | 
| 
      
 72 
     | 
    
         
            +
                    (2003) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10341\",\"name\":\"New
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Mutants Annual (1984) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23514\",\"name\":\"X-Factor
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Annual (1986) #6\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/489\",\"name\":\"1602
         
     | 
| 
      
 75 
     | 
    
         
            +
                    (2003 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2053\",\"name\":\"New
         
     | 
| 
      
 76 
     | 
    
         
            +
                    Mutants Annual (1984 - 1991)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6689\",\"name\":\"X-Factor
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Annual (1986 - Present)\"}],\"returned\":3},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 78 
     | 
    
         
            +
                    Gauntlet\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
         
     | 
| 
      
 79 
     | 
    
         
            +
                    Agenda\"}}]}}"
         
     | 
| 
      
 80 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 81 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 82 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 83 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 84 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/events/32?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 85 
     | 
    
         
            +
                body:
         
     | 
| 
      
 86 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 87 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 88 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 89 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 91 
     | 
    
         
            +
              response:
         
     | 
| 
      
 92 
     | 
    
         
            +
                status:
         
     | 
| 
      
 93 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 94 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 95 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 96 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 97 
     | 
    
         
            +
                  - 0773993d6ae2c5af918d7919ac09452994365b1e
         
     | 
| 
      
 98 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 99 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 100 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 101 
     | 
    
         
            +
                  - '7903'
         
     | 
| 
      
 102 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 103 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:22:23 GMT
         
     | 
| 
      
 104 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 105 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 106 
     | 
    
         
            +
                body:
         
     | 
| 
      
 107 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 108 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"0773993d6ae2c5af918d7919ac09452994365b1e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":32,\"title\":\"Kings
         
     | 
| 
      
 109 
     | 
    
         
            +
                    of Pain\",\"description\":\"The terrorist organization A.I.M. seek to resurrect
         
     | 
| 
      
 110 
     | 
    
         
            +
                    the powerful reality-altering mutant named Proteus, and it's up to the various
         
     | 
| 
      
 111 
     | 
    
         
            +
                    X-teams and the New Warriors to stop them.\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/32/kings_of_pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Kings_of_Pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-10-18T12:39:11-0400\",\"start\":\"1991-01-01
         
     | 
| 
      
 112 
     | 
    
         
            +
                    00:00:00\",\"end\":\"1992-05-11 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/d/60/51c9e88b7fbd9\",\"extension\":\"jpg\"},\"creators\":{\"available\":25,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
         
     | 
| 
      
 113 
     | 
    
         
            +
                    Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/435\",\"name\":\"Al
         
     | 
| 
      
 114 
     | 
    
         
            +
                    Milgrom\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1914\",\"name\":\"Dan
         
     | 
| 
      
 115 
     | 
    
         
            +
                    Panosian\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/939\",\"name\":\"Joe
         
     | 
| 
      
 116 
     | 
    
         
            +
                    Rubinstein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1279\",\"name\":\"Jon
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/175\",\"name\":\"Andy
         
     | 
| 
      
 118 
     | 
    
         
            +
                    Kubert\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/571\",\"name\":\"Rob
         
     | 
| 
      
 119 
     | 
    
         
            +
                    Liefeld\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3459\",\"name\":\"Judy
         
     | 
| 
      
 120 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 121 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/567\",\"name\":\"Neil
         
     | 
| 
      
 122 
     | 
    
         
            +
                    Gaiman\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6001\",\"name\":\"Fabian
         
     | 
| 
      
 123 
     | 
    
         
            +
                    Nacieza\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1909\",\"name\":\"Steve
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Buccellato\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1224\",\"name\":\"Marie
         
     | 
| 
      
 125 
     | 
    
         
            +
                    Javins\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5815\",\"name\":\"Steven
         
     | 
| 
      
 126 
     | 
    
         
            +
                    Butler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9565\",\"name\":\"Tom
         
     | 
| 
      
 127 
     | 
    
         
            +
                    DeFalco\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2099\",\"name\":\"Suzanne
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Gaffney\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/375\",\"name\":\"Bob
         
     | 
| 
      
 129 
     | 
    
         
            +
                    Harras\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/566\",\"name\":\"Scott
         
     | 
| 
      
 130 
     | 
    
         
            +
                    McKowen\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1926\",\"name\":\"Mike
         
     | 
| 
      
 131 
     | 
    
         
            +
                    Mignola\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1759\",\"name\":\"Joe
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Rosen\",\"role\":\"letterer\"}],\"returned\":20},\"characters\":{\"available\":31,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
         
     | 
| 
      
 133 
     | 
    
         
            +
                    (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010366\",\"name\":\"Boom
         
     | 
| 
      
 134 
     | 
    
         
            +
                    Boom\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009219\",\"name\":\"Cannonball\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009223\",\"name\":\"Captain
         
     | 
| 
      
 135 
     | 
    
         
            +
                    Britain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011213\",\"name\":\"Feral\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009306\",\"name\":\"Firestar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011055\",\"name\":\"Gideon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009399\",\"name\":\"Legion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009427\",\"name\":\"Marvel
         
     | 
| 
      
 136 
     | 
    
         
            +
                    Boy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011056\",\"name\":\"Multiple
         
     | 
| 
      
 137 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009465\",\"name\":\"Mystique\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009469\",\"name\":\"Namorita\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011336\",\"name\":\"New
         
     | 
| 
      
 138 
     | 
    
         
            +
                    Mutants\"}],\"returned\":20},\"stories\":{\"available\":14,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2629\",\"name\":\"1602
         
     | 
| 
      
 139 
     | 
    
         
            +
                    #7\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2630\",\"name\":\"1602
         
     | 
| 
      
 140 
     | 
    
         
            +
                    #7\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21637\",\"name\":\"Cover
         
     | 
| 
      
 141 
     | 
    
         
            +
                    #21637\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21638\",\"name\":\"\",\"type\":\"table
         
     | 
| 
      
 142 
     | 
    
         
            +
                    of contents\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21639\",\"name\":\"Pawns
         
     | 
| 
      
 143 
     | 
    
         
            +
                    of Senescence\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21640\",\"name\":\"The
         
     | 
| 
      
 144 
     | 
    
         
            +
                    First Cut\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21641\",\"name\":\"Close
         
     | 
| 
      
 145 
     | 
    
         
            +
                    Encounters of the Mutant Kind\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21642\",\"name\":\"New
         
     | 
| 
      
 146 
     | 
    
         
            +
                    Mutants Organizational Chart\",\"type\":\"feature\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21643\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21644\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51883\",\"name\":\"Kings
         
     | 
| 
      
 147 
     | 
    
         
            +
                    of Pain Part 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51884\",\"name\":\"King
         
     | 
| 
      
 148 
     | 
    
         
            +
                    of Pain\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51885\",\"name\":\"The
         
     | 
| 
      
 149 
     | 
    
         
            +
                    Killing Stroke Part Three: Sacrificial Lambs\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51886\",\"name\":\"Tribute
         
     | 
| 
      
 150 
     | 
    
         
            +
                    The Third\",\"type\":\"interiorStory\"}],\"returned\":14},\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/145\",\"name\":\"1602
         
     | 
| 
      
 151 
     | 
    
         
            +
                    (2003) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10341\",\"name\":\"New
         
     | 
| 
      
 152 
     | 
    
         
            +
                    Mutants Annual (1984) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23514\",\"name\":\"X-Factor
         
     | 
| 
      
 153 
     | 
    
         
            +
                    Annual (1986) #6\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/489\",\"name\":\"1602
         
     | 
| 
      
 154 
     | 
    
         
            +
                    (2003 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2053\",\"name\":\"New
         
     | 
| 
      
 155 
     | 
    
         
            +
                    Mutants Annual (1984 - 1991)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6689\",\"name\":\"X-Factor
         
     | 
| 
      
 156 
     | 
    
         
            +
                    Annual (1986 - Present)\"}],\"returned\":3},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Gauntlet\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
         
     | 
| 
      
 158 
     | 
    
         
            +
                    Agenda\"}}]}}"
         
     | 
| 
      
 159 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 160 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 161 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 162 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 163 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/events/32?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 164 
     | 
    
         
            +
                body:
         
     | 
| 
      
 165 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 166 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 167 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 168 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 169 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 170 
     | 
    
         
            +
              response:
         
     | 
| 
      
 171 
     | 
    
         
            +
                status:
         
     | 
| 
      
 172 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 173 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 174 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 175 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 176 
     | 
    
         
            +
                  - 0773993d6ae2c5af918d7919ac09452994365b1e
         
     | 
| 
      
 177 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 178 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 179 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 180 
     | 
    
         
            +
                  - '7903'
         
     | 
| 
      
 181 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 182 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:22:23 GMT
         
     | 
| 
      
 183 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 184 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 185 
     | 
    
         
            +
                body:
         
     | 
| 
      
 186 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 187 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"0773993d6ae2c5af918d7919ac09452994365b1e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":32,\"title\":\"Kings
         
     | 
| 
      
 188 
     | 
    
         
            +
                    of Pain\",\"description\":\"The terrorist organization A.I.M. seek to resurrect
         
     | 
| 
      
 189 
     | 
    
         
            +
                    the powerful reality-altering mutant named Proteus, and it's up to the various
         
     | 
| 
      
 190 
     | 
    
         
            +
                    X-teams and the New Warriors to stop them.\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/32/kings_of_pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Kings_of_Pain?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-10-18T12:39:11-0400\",\"start\":\"1991-01-01
         
     | 
| 
      
 191 
     | 
    
         
            +
                    00:00:00\",\"end\":\"1992-05-11 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/d/60/51c9e88b7fbd9\",\"extension\":\"jpg\"},\"creators\":{\"available\":25,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/435\",\"name\":\"Al
         
     | 
| 
      
 193 
     | 
    
         
            +
                    Milgrom\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1914\",\"name\":\"Dan
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Panosian\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/939\",\"name\":\"Joe
         
     | 
| 
      
 195 
     | 
    
         
            +
                    Rubinstein\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1279\",\"name\":\"Jon
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/175\",\"name\":\"Andy
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Kubert\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/571\",\"name\":\"Rob
         
     | 
| 
      
 198 
     | 
    
         
            +
                    Liefeld\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3459\",\"name\":\"Judy
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 200 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/567\",\"name\":\"Neil
         
     | 
| 
      
 201 
     | 
    
         
            +
                    Gaiman\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6001\",\"name\":\"Fabian
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Nacieza\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1909\",\"name\":\"Steve
         
     | 
| 
      
 203 
     | 
    
         
            +
                    Buccellato\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1224\",\"name\":\"Marie
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Javins\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5815\",\"name\":\"Steven
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Butler\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9565\",\"name\":\"Tom
         
     | 
| 
      
 206 
     | 
    
         
            +
                    DeFalco\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2099\",\"name\":\"Suzanne
         
     | 
| 
      
 207 
     | 
    
         
            +
                    Gaffney\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/375\",\"name\":\"Bob
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Harras\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/566\",\"name\":\"Scott
         
     | 
| 
      
 209 
     | 
    
         
            +
                    McKowen\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1926\",\"name\":\"Mike
         
     | 
| 
      
 210 
     | 
    
         
            +
                    Mignola\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1759\",\"name\":\"Joe
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Rosen\",\"role\":\"letterer\"}],\"returned\":20},\"characters\":{\"available\":31,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
         
     | 
| 
      
 212 
     | 
    
         
            +
                    (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010366\",\"name\":\"Boom
         
     | 
| 
      
 213 
     | 
    
         
            +
                    Boom\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009219\",\"name\":\"Cannonball\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009223\",\"name\":\"Captain
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Britain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011213\",\"name\":\"Feral\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009306\",\"name\":\"Firestar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011055\",\"name\":\"Gideon\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009399\",\"name\":\"Legion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009427\",\"name\":\"Marvel
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Boy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011056\",\"name\":\"Multiple
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009465\",\"name\":\"Mystique\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009469\",\"name\":\"Namorita\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011336\",\"name\":\"New
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Mutants\"}],\"returned\":20},\"stories\":{\"available\":14,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2629\",\"name\":\"1602
         
     | 
| 
      
 218 
     | 
    
         
            +
                    #7\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2630\",\"name\":\"1602
         
     | 
| 
      
 219 
     | 
    
         
            +
                    #7\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21637\",\"name\":\"Cover
         
     | 
| 
      
 220 
     | 
    
         
            +
                    #21637\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21638\",\"name\":\"\",\"type\":\"table
         
     | 
| 
      
 221 
     | 
    
         
            +
                    of contents\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21639\",\"name\":\"Pawns
         
     | 
| 
      
 222 
     | 
    
         
            +
                    of Senescence\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21640\",\"name\":\"The
         
     | 
| 
      
 223 
     | 
    
         
            +
                    First Cut\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21641\",\"name\":\"Close
         
     | 
| 
      
 224 
     | 
    
         
            +
                    Encounters of the Mutant Kind\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21642\",\"name\":\"New
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Mutants Organizational Chart\",\"type\":\"feature\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21643\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21644\",\"name\":\"\",\"type\":\"pin-up\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51883\",\"name\":\"Kings
         
     | 
| 
      
 226 
     | 
    
         
            +
                    of Pain Part 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51884\",\"name\":\"King
         
     | 
| 
      
 227 
     | 
    
         
            +
                    of Pain\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51885\",\"name\":\"The
         
     | 
| 
      
 228 
     | 
    
         
            +
                    Killing Stroke Part Three: Sacrificial Lambs\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51886\",\"name\":\"Tribute
         
     | 
| 
      
 229 
     | 
    
         
            +
                    The Third\",\"type\":\"interiorStory\"}],\"returned\":14},\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/145\",\"name\":\"1602
         
     | 
| 
      
 230 
     | 
    
         
            +
                    (2003) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10341\",\"name\":\"New
         
     | 
| 
      
 231 
     | 
    
         
            +
                    Mutants Annual (1984) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23514\",\"name\":\"X-Factor
         
     | 
| 
      
 232 
     | 
    
         
            +
                    Annual (1986) #6\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/32/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/489\",\"name\":\"1602
         
     | 
| 
      
 233 
     | 
    
         
            +
                    (2003 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2053\",\"name\":\"New
         
     | 
| 
      
 234 
     | 
    
         
            +
                    Mutants Annual (1984 - 1991)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6689\",\"name\":\"X-Factor
         
     | 
| 
      
 235 
     | 
    
         
            +
                    Annual (1986 - Present)\"}],\"returned\":3},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
         
     | 
| 
      
 236 
     | 
    
         
            +
                    Gauntlet\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
         
     | 
| 
      
 237 
     | 
    
         
            +
                    Agenda\"}}]}}"
         
     | 
| 
      
 238 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 239 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 240 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,375 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/stories/1203/events?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 
     | 
    
         
            +
                  - 9584097b9b293afaf5f565dc96440c819a8d647b
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '12389'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:23:46 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9584097b9b293afaf5f565dc96440c819a8d647b\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":238,\"title\":\"Civil
         
     | 
| 
      
 30 
     | 
    
         
            +
                    War\",\"description\":\"After a horrific tragedy raises questions on whether
         
     | 
| 
      
 31 
     | 
    
         
            +
                    or not super heroes should register with the government, longtime Avengers
         
     | 
| 
      
 32 
     | 
    
         
            +
                    teammates Captain America and Iron Man end up on opposite sides of the argument!
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Writer Mark Millar and artist Steve McNiven split the Marvel Universe in two
         
     | 
| 
      
 34 
     | 
    
         
            +
                    as friend fights friend in one of the most celebrated and successful events
         
     | 
| 
      
 35 
     | 
    
         
            +
                    of all-time!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/238/civil_war?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Civil_War?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-11-07T10:40:01-0500\",\"start\":\"2006-07-01
         
     | 
| 
      
 36 
     | 
    
         
            +
                    00:00:00\",\"end\":\"2007-01-29 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/d0/51cb5356c2063\",\"extension\":\"jpg\"},\"creators\":{\"available\":136,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4627\",\"name\":\"Roberto
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Aguirre-Sacasa\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/24\",\"name\":\"Brian
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Michael Bendis\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/367\",\"name\":\"Ed
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Brubaker\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/887\",\"name\":\"Ronald
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Byrd\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/598\",\"name\":\"Brad
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Anderson\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/520\",\"name\":\"Rainier
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Beredo\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11543\",\"name\":\"Dan
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Brown\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1045\",\"name\":\"Ramon
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Bachs\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/970\",\"name\":\"Dennis
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Calero\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1141\",\"name\":\"Giuseppe
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Camuncoli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1133\",\"name\":\"Stefano
         
     | 
| 
      
 48 
     | 
    
         
            +
                    Caselli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/808\",\"name\":\"Howard
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Chaykin\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/174\",\"name\":\"Sean
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Chen\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5268\",\"name\":\"Jim
         
     | 
| 
      
 51 
     | 
    
         
            +
                    Calafiore\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/666\",\"name\":\"Roberto
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Campus\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/357\",\"name\":\"Jim
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Cheung\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/185\",\"name\":\"Frank
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Cho\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10053\",\"name\":\"Michael
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Chatham\",\"role\":\"other\"}],\"returned\":20},\"characters\":{\"available\":69,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009740\",\"name\":\"Arnim
         
     | 
| 
      
 56 
     | 
    
         
            +
                    Zola\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009182\",\"name\":\"Bishop\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009184\",\"name\":\"Black
         
     | 
| 
      
 57 
     | 
    
         
            +
                    Bolt\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009185\",\"name\":\"Black
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Cat\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 59 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009191\",\"name\":\"Blade\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009212\",\"name\":\"Bullseye\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 60 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010676\",\"name\":\"Colleen
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Wing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009268\",\"name\":\"Deadpool\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 63 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"}],\"returned\":20},\"stories\":{\"available\":325,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/543\",\"name\":\"Interior
         
     | 
| 
      
 64 
     | 
    
         
            +
                    #543\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/956\",\"name\":\"1
         
     | 
| 
      
 65 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/957\",\"name\":\"1
         
     | 
| 
      
 66 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/958\",\"name\":\"2
         
     | 
| 
      
 67 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/959\",\"name\":\"2
         
     | 
| 
      
 68 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 69 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/961\",\"name\":\"3
         
     | 
| 
      
 70 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/962\",\"name\":\"2
         
     | 
| 
      
 71 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/963\",\"name\":\"2
         
     | 
| 
      
 72 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/964\",\"name\":\"3
         
     | 
| 
      
 73 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/965\",\"name\":\"3
         
     | 
| 
      
 74 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/966\",\"name\":\"4
         
     | 
| 
      
 75 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/967\",\"name\":\"4
         
     | 
| 
      
 76 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/968\",\"name\":\"5
         
     | 
| 
      
 77 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/969\",\"name\":\"5
         
     | 
| 
      
 78 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/971\",\"name\":\"4
         
     | 
| 
      
 79 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/972\",\"name\":\"6
         
     | 
| 
      
 80 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/973\",\"name\":\"6
         
     | 
| 
      
 81 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1183\",\"name\":\"1
         
     | 
| 
      
 82 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1184\",\"name\":\"1
         
     | 
| 
      
 83 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":141,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3537\",\"name\":\"Amazing
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Spider-Man (1999) #529\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4431\",\"name\":\"Amazing
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Spider-Man (1999) #534\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5094\",\"name\":\"Amazing
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Spider-Man (1999) #536\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5245\",\"name\":\"Amazing
         
     | 
| 
      
 92 
     | 
    
         
            +
                    Spider-Man (1999) #537\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5808\",\"name\":\"Amazing
         
     | 
| 
      
 93 
     | 
    
         
            +
                    Spider-Man (1999) #538\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4425\",\"name\":\"Black
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Panther (2005) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5243\",\"name\":\"Black
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Panther (2005) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5408\",\"name\":\"Black
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Panther (2005) #22\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5667\",\"name\":\"Black
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Panther (2005) #23\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5805\",\"name\":\"Black
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Panther (2005) #24\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6047\",\"name\":\"Black
         
     | 
| 
      
 99 
     | 
    
         
            +
                    Panther (2005) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13513\",\"name\":\"Black
         
     | 
| 
      
 100 
     | 
    
         
            +
                    Panther: Civil War (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5849\",\"name\":\"Blade
         
     | 
| 
      
 101 
     | 
    
         
            +
                    (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4450\",\"name\":\"Cable
         
     | 
| 
      
 102 
     | 
    
         
            +
                    & Deadpool (2004) #30\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4803\",\"name\":\"Cable
         
     | 
| 
      
 103 
     | 
    
         
            +
                    & Deadpool (2004) #31\"}],\"returned\":20},\"series\":{\"available\":62,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/784\",\"name\":\"Black
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Panther (2005 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2226\",\"name\":\"Black
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Panther: Civil War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1123\",\"name\":\"Blade
         
     | 
| 
      
 107 
     | 
    
         
            +
                    (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/693\",\"name\":\"Cable
         
     | 
| 
      
 108 
     | 
    
         
            +
                    & Deadpool (2004 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/832\",\"name\":\"Captain
         
     | 
| 
      
 109 
     | 
    
         
            +
                    America (2004 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6208\",\"name\":\"Civil
         
     | 
| 
      
 110 
     | 
    
         
            +
                    War (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 111 
     | 
    
         
            +
                    War (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1893\",\"name\":\"Civil
         
     | 
| 
      
 112 
     | 
    
         
            +
                    War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6248\",\"name\":\"Civil
         
     | 
| 
      
 113 
     | 
    
         
            +
                    War (DM Only) (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1101\",\"name\":\"Civil
         
     | 
| 
      
 114 
     | 
    
         
            +
                    War Files (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1900\",\"name\":\"Civil
         
     | 
| 
      
 115 
     | 
    
         
            +
                    War: Amazing Spider-Man (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1871\",\"name\":\"Civil
         
     | 
| 
      
 116 
     | 
    
         
            +
                    War: Battle Damage (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2256\",\"name\":\"Civil
         
     | 
| 
      
 117 
     | 
    
         
            +
                    War: Captain America (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2316\",\"name\":\"Civil
         
     | 
| 
      
 118 
     | 
    
         
            +
                    War: Choosing Sides (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10102\",\"name\":\"Civil
         
     | 
| 
      
 119 
     | 
    
         
            +
                    War: Fantastic Four (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1898\",\"name\":\"Civil
         
     | 
| 
      
 120 
     | 
    
         
            +
                    War: Fantastic Four (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1109\",\"name\":\"Civil
         
     | 
| 
      
 121 
     | 
    
         
            +
                    War: Front Line (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11636\",\"name\":\"Civil
         
     | 
| 
      
 122 
     | 
    
         
            +
                    War: Front Line (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1964\",\"name\":\"Civil
         
     | 
| 
      
 123 
     | 
    
         
            +
                    War: Front Line Book 1 (2007)\"}],\"returned\":20},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/212\",\"name\":\"Planet
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Hulk\"}}]}}"
         
     | 
| 
      
 125 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 126 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 127 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 128 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 129 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/events/238?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 130 
     | 
    
         
            +
                body:
         
     | 
| 
      
 131 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 132 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 133 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 134 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 135 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 136 
     | 
    
         
            +
              response:
         
     | 
| 
      
 137 
     | 
    
         
            +
                status:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 139 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 140 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - 9584097b9b293afaf5f565dc96440c819a8d647b
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - '12389'
         
     | 
| 
      
 147 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 148 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:23:40 GMT
         
     | 
| 
      
 149 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 150 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 151 
     | 
    
         
            +
                body:
         
     | 
| 
      
 152 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 153 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"9584097b9b293afaf5f565dc96440c819a8d647b\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":238,\"title\":\"Civil
         
     | 
| 
      
 154 
     | 
    
         
            +
                    War\",\"description\":\"After a horrific tragedy raises questions on whether
         
     | 
| 
      
 155 
     | 
    
         
            +
                    or not super heroes should register with the government, longtime Avengers
         
     | 
| 
      
 156 
     | 
    
         
            +
                    teammates Captain America and Iron Man end up on opposite sides of the argument!
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Writer Mark Millar and artist Steve McNiven split the Marvel Universe in two
         
     | 
| 
      
 158 
     | 
    
         
            +
                    as friend fights friend in one of the most celebrated and successful events
         
     | 
| 
      
 159 
     | 
    
         
            +
                    of all-time!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/238/civil_war?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Civil_War?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-11-07T10:40:01-0500\",\"start\":\"2006-07-01
         
     | 
| 
      
 160 
     | 
    
         
            +
                    00:00:00\",\"end\":\"2007-01-29 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/d0/51cb5356c2063\",\"extension\":\"jpg\"},\"creators\":{\"available\":136,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 161 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4627\",\"name\":\"Roberto
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Aguirre-Sacasa\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/24\",\"name\":\"Brian
         
     | 
| 
      
 163 
     | 
    
         
            +
                    Michael Bendis\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/367\",\"name\":\"Ed
         
     | 
| 
      
 164 
     | 
    
         
            +
                    Brubaker\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/887\",\"name\":\"Ronald
         
     | 
| 
      
 165 
     | 
    
         
            +
                    Byrd\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/598\",\"name\":\"Brad
         
     | 
| 
      
 166 
     | 
    
         
            +
                    Anderson\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/520\",\"name\":\"Rainier
         
     | 
| 
      
 167 
     | 
    
         
            +
                    Beredo\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11543\",\"name\":\"Dan
         
     | 
| 
      
 168 
     | 
    
         
            +
                    Brown\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1045\",\"name\":\"Ramon
         
     | 
| 
      
 169 
     | 
    
         
            +
                    Bachs\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/970\",\"name\":\"Dennis
         
     | 
| 
      
 170 
     | 
    
         
            +
                    Calero\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1141\",\"name\":\"Giuseppe
         
     | 
| 
      
 171 
     | 
    
         
            +
                    Camuncoli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1133\",\"name\":\"Stefano
         
     | 
| 
      
 172 
     | 
    
         
            +
                    Caselli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/808\",\"name\":\"Howard
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Chaykin\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/174\",\"name\":\"Sean
         
     | 
| 
      
 174 
     | 
    
         
            +
                    Chen\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5268\",\"name\":\"Jim
         
     | 
| 
      
 175 
     | 
    
         
            +
                    Calafiore\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/666\",\"name\":\"Roberto
         
     | 
| 
      
 176 
     | 
    
         
            +
                    Campus\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/357\",\"name\":\"Jim
         
     | 
| 
      
 177 
     | 
    
         
            +
                    Cheung\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/185\",\"name\":\"Frank
         
     | 
| 
      
 178 
     | 
    
         
            +
                    Cho\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10053\",\"name\":\"Michael
         
     | 
| 
      
 179 
     | 
    
         
            +
                    Chatham\",\"role\":\"other\"}],\"returned\":20},\"characters\":{\"available\":69,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009740\",\"name\":\"Arnim
         
     | 
| 
      
 180 
     | 
    
         
            +
                    Zola\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009182\",\"name\":\"Bishop\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009184\",\"name\":\"Black
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Bolt\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009185\",\"name\":\"Black
         
     | 
| 
      
 182 
     | 
    
         
            +
                    Cat\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 183 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009191\",\"name\":\"Blade\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009212\",\"name\":\"Bullseye\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 184 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 185 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010676\",\"name\":\"Colleen
         
     | 
| 
      
 186 
     | 
    
         
            +
                    Wing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009268\",\"name\":\"Deadpool\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 187 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"}],\"returned\":20},\"stories\":{\"available\":325,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/543\",\"name\":\"Interior
         
     | 
| 
      
 188 
     | 
    
         
            +
                    #543\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/956\",\"name\":\"1
         
     | 
| 
      
 189 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/957\",\"name\":\"1
         
     | 
| 
      
 190 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/958\",\"name\":\"2
         
     | 
| 
      
 191 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/959\",\"name\":\"2
         
     | 
| 
      
 192 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 193 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/961\",\"name\":\"3
         
     | 
| 
      
 194 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/962\",\"name\":\"2
         
     | 
| 
      
 195 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/963\",\"name\":\"2
         
     | 
| 
      
 196 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/964\",\"name\":\"3
         
     | 
| 
      
 197 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/965\",\"name\":\"3
         
     | 
| 
      
 198 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/966\",\"name\":\"4
         
     | 
| 
      
 199 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/967\",\"name\":\"4
         
     | 
| 
      
 200 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/968\",\"name\":\"5
         
     | 
| 
      
 201 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/969\",\"name\":\"5
         
     | 
| 
      
 202 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/971\",\"name\":\"4
         
     | 
| 
      
 203 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/972\",\"name\":\"6
         
     | 
| 
      
 204 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/973\",\"name\":\"6
         
     | 
| 
      
 205 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1183\",\"name\":\"1
         
     | 
| 
      
 206 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1184\",\"name\":\"1
         
     | 
| 
      
 207 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":141,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3537\",\"name\":\"Amazing
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Spider-Man (1999) #529\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 210 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4431\",\"name\":\"Amazing
         
     | 
| 
      
 213 
     | 
    
         
            +
                    Spider-Man (1999) #534\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5094\",\"name\":\"Amazing
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Spider-Man (1999) #536\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5245\",\"name\":\"Amazing
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Spider-Man (1999) #537\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5808\",\"name\":\"Amazing
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Spider-Man (1999) #538\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4425\",\"name\":\"Black
         
     | 
| 
      
 218 
     | 
    
         
            +
                    Panther (2005) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5243\",\"name\":\"Black
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Panther (2005) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5408\",\"name\":\"Black
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Panther (2005) #22\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5667\",\"name\":\"Black
         
     | 
| 
      
 221 
     | 
    
         
            +
                    Panther (2005) #23\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5805\",\"name\":\"Black
         
     | 
| 
      
 222 
     | 
    
         
            +
                    Panther (2005) #24\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6047\",\"name\":\"Black
         
     | 
| 
      
 223 
     | 
    
         
            +
                    Panther (2005) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13513\",\"name\":\"Black
         
     | 
| 
      
 224 
     | 
    
         
            +
                    Panther: Civil War (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5849\",\"name\":\"Blade
         
     | 
| 
      
 225 
     | 
    
         
            +
                    (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4450\",\"name\":\"Cable
         
     | 
| 
      
 226 
     | 
    
         
            +
                    & Deadpool (2004) #30\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4803\",\"name\":\"Cable
         
     | 
| 
      
 227 
     | 
    
         
            +
                    & Deadpool (2004) #31\"}],\"returned\":20},\"series\":{\"available\":62,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 228 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/784\",\"name\":\"Black
         
     | 
| 
      
 229 
     | 
    
         
            +
                    Panther (2005 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2226\",\"name\":\"Black
         
     | 
| 
      
 230 
     | 
    
         
            +
                    Panther: Civil War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1123\",\"name\":\"Blade
         
     | 
| 
      
 231 
     | 
    
         
            +
                    (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/693\",\"name\":\"Cable
         
     | 
| 
      
 232 
     | 
    
         
            +
                    & Deadpool (2004 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/832\",\"name\":\"Captain
         
     | 
| 
      
 233 
     | 
    
         
            +
                    America (2004 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6208\",\"name\":\"Civil
         
     | 
| 
      
 234 
     | 
    
         
            +
                    War (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 235 
     | 
    
         
            +
                    War (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1893\",\"name\":\"Civil
         
     | 
| 
      
 236 
     | 
    
         
            +
                    War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6248\",\"name\":\"Civil
         
     | 
| 
      
 237 
     | 
    
         
            +
                    War (DM Only) (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1101\",\"name\":\"Civil
         
     | 
| 
      
 238 
     | 
    
         
            +
                    War Files (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1900\",\"name\":\"Civil
         
     | 
| 
      
 239 
     | 
    
         
            +
                    War: Amazing Spider-Man (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1871\",\"name\":\"Civil
         
     | 
| 
      
 240 
     | 
    
         
            +
                    War: Battle Damage (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2256\",\"name\":\"Civil
         
     | 
| 
      
 241 
     | 
    
         
            +
                    War: Captain America (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2316\",\"name\":\"Civil
         
     | 
| 
      
 242 
     | 
    
         
            +
                    War: Choosing Sides (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10102\",\"name\":\"Civil
         
     | 
| 
      
 243 
     | 
    
         
            +
                    War: Fantastic Four (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1898\",\"name\":\"Civil
         
     | 
| 
      
 244 
     | 
    
         
            +
                    War: Fantastic Four (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1109\",\"name\":\"Civil
         
     | 
| 
      
 245 
     | 
    
         
            +
                    War: Front Line (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11636\",\"name\":\"Civil
         
     | 
| 
      
 246 
     | 
    
         
            +
                    War: Front Line (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1964\",\"name\":\"Civil
         
     | 
| 
      
 247 
     | 
    
         
            +
                    War: Front Line Book 1 (2007)\"}],\"returned\":20},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/212\",\"name\":\"Planet
         
     | 
| 
      
 248 
     | 
    
         
            +
                    Hulk\"}}]}}"
         
     | 
| 
      
 249 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 250 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 251 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 252 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 253 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/events/238?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 254 
     | 
    
         
            +
                body:
         
     | 
| 
      
 255 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 256 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 257 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 258 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 259 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 260 
     | 
    
         
            +
              response:
         
     | 
| 
      
 261 
     | 
    
         
            +
                status:
         
     | 
| 
      
 262 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 263 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 264 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 265 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 266 
     | 
    
         
            +
                  - 42a9124c6e4209a62587bda7f6af765a21953e6e
         
     | 
| 
      
 267 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 268 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 269 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 270 
     | 
    
         
            +
                  - '12389'
         
     | 
| 
      
 271 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 272 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:23:41 GMT
         
     | 
| 
      
 273 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 274 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 275 
     | 
    
         
            +
                body:
         
     | 
| 
      
 276 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 277 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"42a9124c6e4209a62587bda7f6af765a21953e6e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":238,\"title\":\"Civil
         
     | 
| 
      
 278 
     | 
    
         
            +
                    War\",\"description\":\"After a horrific tragedy raises questions on whether
         
     | 
| 
      
 279 
     | 
    
         
            +
                    or not super heroes should register with the government, longtime Avengers
         
     | 
| 
      
 280 
     | 
    
         
            +
                    teammates Captain America and Iron Man end up on opposite sides of the argument!
         
     | 
| 
      
 281 
     | 
    
         
            +
                    Writer Mark Millar and artist Steve McNiven split the Marvel Universe in two
         
     | 
| 
      
 282 
     | 
    
         
            +
                    as friend fights friend in one of the most celebrated and successful events
         
     | 
| 
      
 283 
     | 
    
         
            +
                    of all-time!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/events/238/civil_war?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Civil_War?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"modified\":\"2013-11-07T10:40:01-0500\",\"start\":\"2006-07-01
         
     | 
| 
      
 284 
     | 
    
         
            +
                    00:00:00\",\"end\":\"2007-01-29 00:00:00\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/d0/51cb5356c2063\",\"extension\":\"jpg\"},\"creators\":{\"available\":136,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 285 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4627\",\"name\":\"Roberto
         
     | 
| 
      
 286 
     | 
    
         
            +
                    Aguirre-Sacasa\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/24\",\"name\":\"Brian
         
     | 
| 
      
 287 
     | 
    
         
            +
                    Michael Bendis\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/367\",\"name\":\"Ed
         
     | 
| 
      
 288 
     | 
    
         
            +
                    Brubaker\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/887\",\"name\":\"Ronald
         
     | 
| 
      
 289 
     | 
    
         
            +
                    Byrd\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/598\",\"name\":\"Brad
         
     | 
| 
      
 290 
     | 
    
         
            +
                    Anderson\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/520\",\"name\":\"Rainier
         
     | 
| 
      
 291 
     | 
    
         
            +
                    Beredo\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11543\",\"name\":\"Dan
         
     | 
| 
      
 292 
     | 
    
         
            +
                    Brown\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1045\",\"name\":\"Ramon
         
     | 
| 
      
 293 
     | 
    
         
            +
                    Bachs\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/970\",\"name\":\"Dennis
         
     | 
| 
      
 294 
     | 
    
         
            +
                    Calero\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1141\",\"name\":\"Giuseppe
         
     | 
| 
      
 295 
     | 
    
         
            +
                    Camuncoli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1133\",\"name\":\"Stefano
         
     | 
| 
      
 296 
     | 
    
         
            +
                    Caselli\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/808\",\"name\":\"Howard
         
     | 
| 
      
 297 
     | 
    
         
            +
                    Chaykin\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/174\",\"name\":\"Sean
         
     | 
| 
      
 298 
     | 
    
         
            +
                    Chen\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5268\",\"name\":\"Jim
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Calafiore\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/666\",\"name\":\"Roberto
         
     | 
| 
      
 300 
     | 
    
         
            +
                    Campus\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/357\",\"name\":\"Jim
         
     | 
| 
      
 301 
     | 
    
         
            +
                    Cheung\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/185\",\"name\":\"Frank
         
     | 
| 
      
 302 
     | 
    
         
            +
                    Cho\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10053\",\"name\":\"Michael
         
     | 
| 
      
 303 
     | 
    
         
            +
                    Chatham\",\"role\":\"other\"}],\"returned\":20},\"characters\":{\"available\":69,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009740\",\"name\":\"Arnim
         
     | 
| 
      
 304 
     | 
    
         
            +
                    Zola\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009182\",\"name\":\"Bishop\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009184\",\"name\":\"Black
         
     | 
| 
      
 305 
     | 
    
         
            +
                    Bolt\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009185\",\"name\":\"Black
         
     | 
| 
      
 306 
     | 
    
         
            +
                    Cat\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009187\",\"name\":\"Black
         
     | 
| 
      
 307 
     | 
    
         
            +
                    Panther\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009191\",\"name\":\"Blade\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009212\",\"name\":\"Bullseye\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009220\",\"name\":\"Captain
         
     | 
| 
      
 308 
     | 
    
         
            +
                    America\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010338\",\"name\":\"Captain
         
     | 
| 
      
 309 
     | 
    
         
            +
                    Marvel (Carol Danvers)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009241\",\"name\":\"Cloak\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010676\",\"name\":\"Colleen
         
     | 
| 
      
 310 
     | 
    
         
            +
                    Wing\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009243\",\"name\":\"Colossus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009258\",\"name\":\"Dagger\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009262\",\"name\":\"Daredevil\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009268\",\"name\":\"Deadpool\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009282\",\"name\":\"Doctor
         
     | 
| 
      
 311 
     | 
    
         
            +
                    Strange\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009277\",\"name\":\"Domino\"}],\"returned\":20},\"stories\":{\"available\":325,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/543\",\"name\":\"Interior
         
     | 
| 
      
 312 
     | 
    
         
            +
                    #543\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/956\",\"name\":\"1
         
     | 
| 
      
 313 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/957\",\"name\":\"1
         
     | 
| 
      
 314 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/958\",\"name\":\"2
         
     | 
| 
      
 315 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/959\",\"name\":\"2
         
     | 
| 
      
 316 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/960\",\"name\":\"3
         
     | 
| 
      
 317 
     | 
    
         
            +
                    of ?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/961\",\"name\":\"3
         
     | 
| 
      
 318 
     | 
    
         
            +
                    of ?\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/962\",\"name\":\"2
         
     | 
| 
      
 319 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/963\",\"name\":\"2
         
     | 
| 
      
 320 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/964\",\"name\":\"3
         
     | 
| 
      
 321 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/965\",\"name\":\"3
         
     | 
| 
      
 322 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/966\",\"name\":\"4
         
     | 
| 
      
 323 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/967\",\"name\":\"4
         
     | 
| 
      
 324 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/968\",\"name\":\"5
         
     | 
| 
      
 325 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/969\",\"name\":\"5
         
     | 
| 
      
 326 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/971\",\"name\":\"4
         
     | 
| 
      
 327 
     | 
    
         
            +
                    of 6 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/972\",\"name\":\"6
         
     | 
| 
      
 328 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/973\",\"name\":\"6
         
     | 
| 
      
 329 
     | 
    
         
            +
                    of 6 - Civil War (45th Anniversary)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1183\",\"name\":\"1
         
     | 
| 
      
 330 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1184\",\"name\":\"1
         
     | 
| 
      
 331 
     | 
    
         
            +
                    of 5 - Identity Thief\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":141,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3537\",\"name\":\"Amazing
         
     | 
| 
      
 332 
     | 
    
         
            +
                    Spider-Man (1999) #529\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3942\",\"name\":\"Amazing
         
     | 
| 
      
 333 
     | 
    
         
            +
                    Spider-Man (1999) #530\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4065\",\"name\":\"Amazing
         
     | 
| 
      
 334 
     | 
    
         
            +
                    Spider-Man (1999) #531\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4177\",\"name\":\"Amazing
         
     | 
| 
      
 335 
     | 
    
         
            +
                    Spider-Man (1999) #532\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4277\",\"name\":\"Amazing
         
     | 
| 
      
 336 
     | 
    
         
            +
                    Spider-Man (1999) #533\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4431\",\"name\":\"Amazing
         
     | 
| 
      
 337 
     | 
    
         
            +
                    Spider-Man (1999) #534\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4806\",\"name\":\"Amazing
         
     | 
| 
      
 338 
     | 
    
         
            +
                    Spider-Man (1999) #535\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5094\",\"name\":\"Amazing
         
     | 
| 
      
 339 
     | 
    
         
            +
                    Spider-Man (1999) #536\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5245\",\"name\":\"Amazing
         
     | 
| 
      
 340 
     | 
    
         
            +
                    Spider-Man (1999) #537\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5808\",\"name\":\"Amazing
         
     | 
| 
      
 341 
     | 
    
         
            +
                    Spider-Man (1999) #538\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4425\",\"name\":\"Black
         
     | 
| 
      
 342 
     | 
    
         
            +
                    Panther (2005) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5243\",\"name\":\"Black
         
     | 
| 
      
 343 
     | 
    
         
            +
                    Panther (2005) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5408\",\"name\":\"Black
         
     | 
| 
      
 344 
     | 
    
         
            +
                    Panther (2005) #22\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5667\",\"name\":\"Black
         
     | 
| 
      
 345 
     | 
    
         
            +
                    Panther (2005) #23\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5805\",\"name\":\"Black
         
     | 
| 
      
 346 
     | 
    
         
            +
                    Panther (2005) #24\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6047\",\"name\":\"Black
         
     | 
| 
      
 347 
     | 
    
         
            +
                    Panther (2005) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13513\",\"name\":\"Black
         
     | 
| 
      
 348 
     | 
    
         
            +
                    Panther: Civil War (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5849\",\"name\":\"Blade
         
     | 
| 
      
 349 
     | 
    
         
            +
                    (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4450\",\"name\":\"Cable
         
     | 
| 
      
 350 
     | 
    
         
            +
                    & Deadpool (2004) #30\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4803\",\"name\":\"Cable
         
     | 
| 
      
 351 
     | 
    
         
            +
                    & Deadpool (2004) #31\"}],\"returned\":20},\"series\":{\"available\":62,\"collectionURI\":\"http://gateway.marvel.com/v1/public/events/238/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
         
     | 
| 
      
 352 
     | 
    
         
            +
                    Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/784\",\"name\":\"Black
         
     | 
| 
      
 353 
     | 
    
         
            +
                    Panther (2005 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2226\",\"name\":\"Black
         
     | 
| 
      
 354 
     | 
    
         
            +
                    Panther: Civil War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1123\",\"name\":\"Blade
         
     | 
| 
      
 355 
     | 
    
         
            +
                    (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/693\",\"name\":\"Cable
         
     | 
| 
      
 356 
     | 
    
         
            +
                    & Deadpool (2004 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/832\",\"name\":\"Captain
         
     | 
| 
      
 357 
     | 
    
         
            +
                    America (2004 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1893\",\"name\":\"Civil
         
     | 
| 
      
 358 
     | 
    
         
            +
                    War (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6208\",\"name\":\"Civil
         
     | 
| 
      
 359 
     | 
    
         
            +
                    War (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1067\",\"name\":\"Civil
         
     | 
| 
      
 360 
     | 
    
         
            +
                    War (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6248\",\"name\":\"Civil
         
     | 
| 
      
 361 
     | 
    
         
            +
                    War (DM Only) (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1101\",\"name\":\"Civil
         
     | 
| 
      
 362 
     | 
    
         
            +
                    War Files (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1900\",\"name\":\"Civil
         
     | 
| 
      
 363 
     | 
    
         
            +
                    War: Amazing Spider-Man (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1871\",\"name\":\"Civil
         
     | 
| 
      
 364 
     | 
    
         
            +
                    War: Battle Damage (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2256\",\"name\":\"Civil
         
     | 
| 
      
 365 
     | 
    
         
            +
                    War: Captain America (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2316\",\"name\":\"Civil
         
     | 
| 
      
 366 
     | 
    
         
            +
                    War: Choosing Sides (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1898\",\"name\":\"Civil
         
     | 
| 
      
 367 
     | 
    
         
            +
                    War: Fantastic Four (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10102\",\"name\":\"Civil
         
     | 
| 
      
 368 
     | 
    
         
            +
                    War: Fantastic Four (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1109\",\"name\":\"Civil
         
     | 
| 
      
 369 
     | 
    
         
            +
                    War: Front Line (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11636\",\"name\":\"Civil
         
     | 
| 
      
 370 
     | 
    
         
            +
                    War: Front Line (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1964\",\"name\":\"Civil
         
     | 
| 
      
 371 
     | 
    
         
            +
                    War: Front Line Book 1 (2007)\"}],\"returned\":20},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/212\",\"name\":\"Planet
         
     | 
| 
      
 372 
     | 
    
         
            +
                    Hulk\"}}]}}"
         
     | 
| 
      
 373 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 374 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 375 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |