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,591 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/events/279/series?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 12 
     | 
    
         
            +
              response:
         
     | 
| 
      
 13 
     | 
    
         
            +
                status:
         
     | 
| 
      
 14 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 15 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 16 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - 89ddac8b73b3e664a5beb95228755af14833159d
         
     | 
| 
      
 19 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - '70896'
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:32:24 GMT
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"89ddac8b73b3e664a5beb95228755af14833159d\",\"data\":{\"offset\":0,\"limit\":20,\"total\":13,\"count\":13,\"results\":[{\"id\":7455,\"title\":\"New
         
     | 
| 
      
 30 
     | 
    
         
            +
                    Mutants (2009 - 2011)\",\"description\":\"The original New Mutants team of
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Cannonball, Dani Moonstar, Sunspot, Karma, Magma and Magik have reunited!
         
     | 
| 
      
 32 
     | 
    
         
            +
                    With old friends and foes coming out of the woodwork, these friends will be
         
     | 
| 
      
 33 
     | 
    
         
            +
                    challenged like never before!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7455\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/7455/new_mutants_2009_-_2011?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2009,\"endYear\":2011,\"rating\":\"T\",\"type\":\"ongoing\",\"modified\":\"2013-03-01T14:30:01-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/70/513101542cfa6\",\"extension\":\"jpg\"},\"creators\":{\"available\":59,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/7455/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9716\",\"name\":\"BENJAMIN\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/249\",\"name\":\"Art
         
     | 
| 
      
 34 
     | 
    
         
            +
                    Adams\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10405\",\"name\":\"John
         
     | 
| 
      
 35 
     | 
    
         
            +
                    Tyler Christopher\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8522\",\"name\":\"Gabriele
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Dell'Otto\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/277\",\"name\":\"Terry
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Dodson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/273\",\"name\":\"Leandro
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Fernandez\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/248\",\"name\":\"David
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Finch\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8571\",\"name\":\"Guru-eFX\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8000\",\"name\":\"Alejandro
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Arbona\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10035\",\"name\":\"Zachary
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Baldus\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10454\",\"name\":\"Nathan
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Fairbairn\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1107\",\"name\":\"Dan
         
     | 
| 
      
 44 
     | 
    
         
            +
                    Abnett\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/366\",\"name\":\"Mike
         
     | 
| 
      
 45 
     | 
    
         
            +
                    Carey\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/779\",\"name\":\"Matt
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Banning\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9998\",\"name\":\"Elena
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Casagrande\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/7639\",\"name\":\"John
         
     | 
| 
      
 48 
     | 
    
         
            +
                    Barber\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/452\",\"name\":\"Chris
         
     | 
| 
      
 49 
     | 
    
         
            +
                    Eliopoulos\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 50 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10288\",\"name\":\"Marko
         
     | 
| 
      
 51 
     | 
    
         
            +
                    Djurdjevic\",\"role\":\"penciller (cover)\"}],\"returned\":20},\"characters\":{\"available\":25,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/7455/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010354\",\"name\":\"Adam
         
     | 
| 
      
 52 
     | 
    
         
            +
                    Warlock\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009219\",\"name\":\"Cannonball\"},{\"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/1011385\",\"name\":\"Cypher\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009453\",\"name\":\"Dani
         
     | 
| 
      
 53 
     | 
    
         
            +
                    Moonstar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009310\",\"name\":\"Emma
         
     | 
| 
      
 54 
     | 
    
         
            +
                    Frost\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009382\",\"name\":\"Juggernaut\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011386\",\"name\":\"Karma\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009508\",\"name\":\"Kitty
         
     | 
| 
      
 55 
     | 
    
         
            +
                    Pryde\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009399\",\"name\":\"Legion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010942\",\"name\":\"Magik
         
     | 
| 
      
 56 
     | 
    
         
            +
                    (Amanda Sefton)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009415\",\"name\":\"Magik
         
     | 
| 
      
 57 
     | 
    
         
            +
                    (Illyana Rasputin)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009416\",\"name\":\"Magma
         
     | 
| 
      
 58 
     | 
    
         
            +
                    (Amara Aquilla)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009417\",\"name\":\"Magneto\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009410\",\"name\":\"Moira
         
     | 
| 
      
 59 
     | 
    
         
            +
                    MacTaggert\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011336\",\"name\":\"New
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009504\",\"name\":\"Professor
         
     | 
| 
      
 61 
     | 
    
         
            +
                    X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011212\",\"name\":\"Sugar
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009638\",\"name\":\"Sunspot\"}],\"returned\":20},\"stories\":{\"available\":134,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/7455/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53752\",\"name\":\"Cover
         
     | 
| 
      
 63 
     | 
    
         
            +
                    #53752\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53753\",\"name\":\"Interior
         
     | 
| 
      
 64 
     | 
    
         
            +
                    #53753\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53754\",\"name\":\"Cover
         
     | 
| 
      
 65 
     | 
    
         
            +
                    #53754\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57384\",\"name\":\"Cover
         
     | 
| 
      
 66 
     | 
    
         
            +
                    #57384\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57385\",\"name\":\"Interior
         
     | 
| 
      
 67 
     | 
    
         
            +
                    #57385\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57390\",\"name\":\"Cover
         
     | 
| 
      
 68 
     | 
    
         
            +
                    #57390\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57391\",\"name\":\"Interior
         
     | 
| 
      
 69 
     | 
    
         
            +
                    #57391\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57392\",\"name\":\"Cover
         
     | 
| 
      
 70 
     | 
    
         
            +
                    #57392\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57393\",\"name\":\"Interior
         
     | 
| 
      
 71 
     | 
    
         
            +
                    #57393\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57394\",\"name\":\"Cover
         
     | 
| 
      
 72 
     | 
    
         
            +
                    #57394\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57395\",\"name\":\"Interior
         
     | 
| 
      
 73 
     | 
    
         
            +
                    #57395\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57396\",\"name\":\"Cover
         
     | 
| 
      
 74 
     | 
    
         
            +
                    #57396\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57397\",\"name\":\"Interior
         
     | 
| 
      
 75 
     | 
    
         
            +
                    #57397\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57398\",\"name\":\"Cover
         
     | 
| 
      
 76 
     | 
    
         
            +
                    #57398\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57399\",\"name\":\"Interior
         
     | 
| 
      
 77 
     | 
    
         
            +
                    #57399\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57400\",\"name\":\"Cover
         
     | 
| 
      
 78 
     | 
    
         
            +
                    #57400\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57401\",\"name\":\"Interior
         
     | 
| 
      
 79 
     | 
    
         
            +
                    #57401\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57402\",\"name\":\"Cover
         
     | 
| 
      
 80 
     | 
    
         
            +
                    #57402\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57403\",\"name\":\"Interior
         
     | 
| 
      
 81 
     | 
    
         
            +
                    #57403\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57404\",\"name\":\"Cover
         
     | 
| 
      
 82 
     | 
    
         
            +
                    #57404\",\"type\":\"cover\"}],\"returned\":20},\"comics\":{\"available\":55,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/7455/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24262\",\"name\":\"New
         
     | 
| 
      
 83 
     | 
    
         
            +
                    Mutants (2009) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27398\",\"name\":\"New
         
     | 
| 
      
 84 
     | 
    
         
            +
                    Mutants (2009) #1 (BENJAMIN VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27461\",\"name\":\"New
         
     | 
| 
      
 85 
     | 
    
         
            +
                    Mutants (2009) #1 (MCLEOD VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27462\",\"name\":\"New
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Mutants (2009) #1 (ROSS COVER)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/28107\",\"name\":\"New
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Mutants (2009) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26051\",\"name\":\"New
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Mutants (2009) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27463\",\"name\":\"New
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Mutants (2009) #2 (BENJAMIN VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/28600\",\"name\":\"New
         
     | 
| 
      
 90 
     | 
    
         
            +
                    Mutants (2009) #2 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26052\",\"name\":\"New
         
     | 
| 
      
 91 
     | 
    
         
            +
                    Mutants (2009) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27464\",\"name\":\"New
         
     | 
| 
      
 92 
     | 
    
         
            +
                    Mutants (2009) #3 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27857\",\"name\":\"New
         
     | 
| 
      
 93 
     | 
    
         
            +
                    Mutants (2009) #3 (50S DECADE VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26053\",\"name\":\"New
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Mutants (2009) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27465\",\"name\":\"New
         
     | 
| 
      
 95 
     | 
    
         
            +
                    Mutants (2009) #4 (BENJAMIN VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27896\",\"name\":\"New
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Mutants (2009) #4 (70TH FRAME VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26054\",\"name\":\"New
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Mutants (2009) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26055\",\"name\":\"New
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Mutants (2009) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31427\",\"name\":\"New
         
     | 
| 
      
 99 
     | 
    
         
            +
                    Mutants (2009) #6 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26056\",\"name\":\"New
         
     | 
| 
      
 100 
     | 
    
         
            +
                    Mutants (2009) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26057\",\"name\":\"New
         
     | 
| 
      
 101 
     | 
    
         
            +
                    Mutants (2009) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26058\",\"name\":\"New
         
     | 
| 
      
 102 
     | 
    
         
            +
                    Mutants (2009) #9\"}],\"returned\":20},\"events\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/7455/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 103 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":4},\"next\":null,\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2055\",\"name\":\"New
         
     | 
| 
      
 106 
     | 
    
         
            +
                    Mutants (1983 - 1991)\"}},{\"id\":9851,\"title\":\"Second Coming: Prepare
         
     | 
| 
      
 107 
     | 
    
         
            +
                    (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9851\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9851/second_coming_prepare_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"one
         
     | 
| 
      
 108 
     | 
    
         
            +
                    shot\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"creators\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9851/creators\",\"items\":[],\"returned\":0},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9851/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9851/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/106527\",\"name\":\"cover
         
     | 
| 
      
 109 
     | 
    
         
            +
                    from Second Coming: Prepare #1\",\"type\":\"cover\"}],\"returned\":1},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9851/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/33554\",\"name\":\"Second
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Coming: Prepare (2010) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9851/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":2258,\"title\":\"Uncanny
         
     | 
| 
      
 112 
     | 
    
         
            +
                    X-Men (1963 - 2011)\",\"description\":\"The flagship X-Men comic for over
         
     | 
| 
      
 113 
     | 
    
         
            +
                    40 years, Uncanny X-Men delivers action, suspense, and a hint of science fiction
         
     | 
| 
      
 114 
     | 
    
         
            +
                    month in and month out. Follow the adventures of Professor Charles Xavier's
         
     | 
| 
      
 115 
     | 
    
         
            +
                    team of mutants as they attempt to protect a world that hates and fears them.
         
     | 
| 
      
 116 
     | 
    
         
            +
                    \",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/2258/uncanny_x-men_1963_-_2011?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":1963,\"endYear\":2011,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-06-27T14:10:47-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/00/512527be6fba3\",\"extension\":\"jpg\"},\"creators\":{\"available\":372,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/807\",\"name\":\"Comicraft\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6694\",\"name\":\"Wes
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Abbot\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/314\",\"name\":\"Neal
         
     | 
| 
      
 118 
     | 
    
         
            +
                    Adams\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1865\",\"name\":\"Diana
         
     | 
| 
      
 119 
     | 
    
         
            +
                    Albers\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1937\",\"name\":\"Jon
         
     | 
| 
      
 120 
     | 
    
         
            +
                    Babcock\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4472\",\"name\":\"Jg\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4165\",\"name\":\"Sr.\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1836\",\"name\":\"Terry
         
     | 
| 
      
 121 
     | 
    
         
            +
                    Austin\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/263\",\"name\":\"Dick
         
     | 
| 
      
 122 
     | 
    
         
            +
                    Ayers\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/779\",\"name\":\"Matt
         
     | 
| 
      
 123 
     | 
    
         
            +
                    Banning\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2077\",\"name\":\"Hilary
         
     | 
| 
      
 124 
     | 
    
         
            +
                    Barta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/249\",\"name\":\"Art
         
     | 
| 
      
 125 
     | 
    
         
            +
                    Adams\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1212\",\"name\":\"Dan
         
     | 
| 
      
 126 
     | 
    
         
            +
                    Adkins\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/651\",\"name\":\"Brent
         
     | 
| 
      
 127 
     | 
    
         
            +
                    Anderson\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1167\",\"name\":\"Ross
         
     | 
| 
      
 128 
     | 
    
         
            +
                    Andru\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/219\",\"name\":\"Kia
         
     | 
| 
      
 129 
     | 
    
         
            +
                    Asamiya\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/232\",\"name\":\"Chris
         
     | 
| 
      
 130 
     | 
    
         
            +
                    Bachalo\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4444\",\"name\":\"Senen
         
     | 
| 
      
 131 
     | 
    
         
            +
                    Antonio\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8320\",\"name\":\"Darryl
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Banks\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11\",\"name\":\"Chuck
         
     | 
| 
      
 133 
     | 
    
         
            +
                    Austen\",\"role\":\"writer\"}],\"returned\":20},\"characters\":{\"available\":236,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"name\":\"A.I.M.\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009146\",\"name\":\"Abomination
         
     | 
| 
      
 134 
     | 
    
         
            +
                    (Emil Blonsky)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009149\",\"name\":\"Abyss\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010354\",\"name\":\"Adam
         
     | 
| 
      
 135 
     | 
    
         
            +
                    Warlock\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010370\",\"name\":\"Alpha
         
     | 
| 
      
 136 
     | 
    
         
            +
                    Flight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009151\",\"name\":\"Amiko\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009156\",\"name\":\"Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009158\",\"name\":\"Arcade\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009160\",\"name\":\"Arclight\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009163\",\"name\":\"Aurora\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009164\",\"name\":\"Avalanche\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011766\",\"name\":\"Azazel
         
     | 
| 
      
 137 
     | 
    
         
            +
                    (Mutant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009168\",\"name\":\"Banshee\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
         
     | 
| 
      
 138 
     | 
    
         
            +
                    (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009169\",\"name\":\"Baron
         
     | 
| 
      
 139 
     | 
    
         
            +
                    Strucker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009178\",\"name\":\"Beef\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009182\",\"name\":\"Bishop\"}],\"returned\":20},\"stories\":{\"available\":1311,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/690\",\"name\":\"1
         
     | 
| 
      
 140 
     | 
    
         
            +
                    of 3\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/691\",\"name\":\"1
         
     | 
| 
      
 141 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/698\",\"name\":\"Cover
         
     | 
| 
      
 142 
     | 
    
         
            +
                    #698\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/699\",\"name\":\"Interior
         
     | 
| 
      
 143 
     | 
    
         
            +
                    #699\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/708\",\"name\":\"Cover
         
     | 
| 
      
 144 
     | 
    
         
            +
                    #708\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/709\",\"name\":\"Interior
         
     | 
| 
      
 145 
     | 
    
         
            +
                    #709\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/710\",\"name\":\"Cover
         
     | 
| 
      
 146 
     | 
    
         
            +
                    #710\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/711\",\"name\":\"Interior
         
     | 
| 
      
 147 
     | 
    
         
            +
                    #711\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/712\",\"name\":\"Cover
         
     | 
| 
      
 148 
     | 
    
         
            +
                    #712\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/713\",\"name\":\"Interior
         
     | 
| 
      
 149 
     | 
    
         
            +
                    #713\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/714\",\"name\":\"Cover
         
     | 
| 
      
 150 
     | 
    
         
            +
                    #714\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/715\",\"name\":\"Interior
         
     | 
| 
      
 151 
     | 
    
         
            +
                    #715\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/716\",\"name\":\"Cover
         
     | 
| 
      
 152 
     | 
    
         
            +
                    #716\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/717\",\"name\":\"Interior
         
     | 
| 
      
 153 
     | 
    
         
            +
                    #717\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/718\",\"name\":\"Cover
         
     | 
| 
      
 154 
     | 
    
         
            +
                    #718\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/719\",\"name\":\"Interior
         
     | 
| 
      
 155 
     | 
    
         
            +
                    #719\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/720\",\"name\":\"Cover
         
     | 
| 
      
 156 
     | 
    
         
            +
                    #720\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/721\",\"name\":\"Interior
         
     | 
| 
      
 157 
     | 
    
         
            +
                    #721\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/722\",\"name\":\"Cover
         
     | 
| 
      
 158 
     | 
    
         
            +
                    #722\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/723\",\"name\":\"Interior
         
     | 
| 
      
 159 
     | 
    
         
            +
                    #723\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":595,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13682\",\"name\":\"Uncanny
         
     | 
| 
      
 160 
     | 
    
         
            +
                    X-Men (1963)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12413\",\"name\":\"Uncanny
         
     | 
| 
      
 161 
     | 
    
         
            +
                    X-Men (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12466\",\"name\":\"Uncanny
         
     | 
| 
      
 162 
     | 
    
         
            +
                    X-Men (1963) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12477\",\"name\":\"Uncanny
         
     | 
| 
      
 163 
     | 
    
         
            +
                    X-Men (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12488\",\"name\":\"Uncanny
         
     | 
| 
      
 164 
     | 
    
         
            +
                    X-Men (1963) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12499\",\"name\":\"Uncanny
         
     | 
| 
      
 165 
     | 
    
         
            +
                    X-Men (1963) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12510\",\"name\":\"Uncanny
         
     | 
| 
      
 166 
     | 
    
         
            +
                    X-Men (1963) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12521\",\"name\":\"Uncanny
         
     | 
| 
      
 167 
     | 
    
         
            +
                    X-Men (1963) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12532\",\"name\":\"Uncanny
         
     | 
| 
      
 168 
     | 
    
         
            +
                    X-Men (1963) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12543\",\"name\":\"Uncanny
         
     | 
| 
      
 169 
     | 
    
         
            +
                    X-Men (1963) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12414\",\"name\":\"Uncanny
         
     | 
| 
      
 170 
     | 
    
         
            +
                    X-Men (1963) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12425\",\"name\":\"Uncanny
         
     | 
| 
      
 171 
     | 
    
         
            +
                    X-Men (1963) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12436\",\"name\":\"Uncanny
         
     | 
| 
      
 172 
     | 
    
         
            +
                    X-Men (1963) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12447\",\"name\":\"Uncanny
         
     | 
| 
      
 173 
     | 
    
         
            +
                    X-Men (1963) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12458\",\"name\":\"Uncanny
         
     | 
| 
      
 174 
     | 
    
         
            +
                    X-Men (1963) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12461\",\"name\":\"Uncanny
         
     | 
| 
      
 175 
     | 
    
         
            +
                    X-Men (1963) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12462\",\"name\":\"Uncanny
         
     | 
| 
      
 176 
     | 
    
         
            +
                    X-Men (1963) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12463\",\"name\":\"Uncanny
         
     | 
| 
      
 177 
     | 
    
         
            +
                    X-Men (1963) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12464\",\"name\":\"Uncanny
         
     | 
| 
      
 178 
     | 
    
         
            +
                    X-Men (1963) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12465\",\"name\":\"Uncanny
         
     | 
| 
      
 179 
     | 
    
         
            +
                    X-Men (1963) #19\"}],\"returned\":20},\"events\":{\"available\":15,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/2258/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
         
     | 
| 
      
 180 
     | 
    
         
            +
                    of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 181 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
         
     | 
| 
      
 182 
     | 
    
         
            +
                    of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
         
     | 
| 
      
 183 
     | 
    
         
            +
                    Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
         
     | 
| 
      
 184 
     | 
    
         
            +
                    Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
         
     | 
| 
      
 185 
     | 
    
         
            +
                    of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
         
     | 
| 
      
 186 
     | 
    
         
            +
                    Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
         
     | 
| 
      
 187 
     | 
    
         
            +
                    CompleX\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/263\",\"name\":\"Mutant
         
     | 
| 
      
 188 
     | 
    
         
            +
                    Massacre\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
         
     | 
| 
      
 189 
     | 
    
         
            +
                    Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
         
     | 
| 
      
 190 
     | 
    
         
            +
                    Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 191 
     | 
    
         
            +
                    Second Coming\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Agenda\"}],\"returned\":15},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14914\",\"name\":\"Uncanny
         
     | 
| 
      
 193 
     | 
    
         
            +
                    X-Men (2011 - 2012)\"},\"previous\":null},{\"id\":1035,\"title\":\"X-Factor
         
     | 
| 
      
 194 
     | 
    
         
            +
                    (2005 - Present)\",\"description\":\"X-Factor is quite possibly the most unpredictable
         
     | 
| 
      
 195 
     | 
    
         
            +
                    book in the Marvel line-up. A psychological tour de force that doesn't skimp
         
     | 
| 
      
 196 
     | 
    
         
            +
                    on the laughs, action or mystery, each issue of X-Factor brings something
         
     | 
| 
      
 197 
     | 
    
         
            +
                    new to the table. Maybe not the best bet for a young reader, but a killer
         
     | 
| 
      
 198 
     | 
    
         
            +
                    title for serious readers. \",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1035\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/1035/x-factor_2005_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2005,\"endYear\":2099,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-08-06T15:21:14-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/03/513114f727e67\",\"extension\":\"jpg\"},\"creators\":{\"available\":68,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1035/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10142\",\"name\":\"MITRIC\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/937\",\"name\":\"Renato
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Arlem\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/970\",\"name\":\"Dennis
         
     | 
| 
      
 200 
     | 
    
         
            +
                    Calero\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8068\",\"name\":\"Bing
         
     | 
| 
      
 201 
     | 
    
         
            +
                    Cansino\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8132\",\"name\":\"Boo
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Cook\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 203 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/589\",\"name\":\"Nelson
         
     | 
| 
      
 204 
     | 
    
         
            +
                    DeCastro\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/7722\",\"name\":\"VALENTINE
         
     | 
| 
      
 205 
     | 
    
         
            +
                    DELANDRO\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11575\",\"name\":\"Kristafer
         
     | 
| 
      
 206 
     | 
    
         
            +
                    Anka\",\"role\":\"penciler (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11543\",\"name\":\"Dan
         
     | 
| 
      
 207 
     | 
    
         
            +
                    Brown\",\"role\":\"colorist (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11559\",\"name\":\"Jeff
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Scott Campbell\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/357\",\"name\":\"Jim
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Cheung\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8522\",\"name\":\"Gabriele
         
     | 
| 
      
 210 
     | 
    
         
            +
                    Dell'Otto\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9998\",\"name\":\"Elena
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Casagrande\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8738\",\"name\":\"Jeromy
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Cox\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8504\",\"name\":\"Frank
         
     | 
| 
      
 213 
     | 
    
         
            +
                    D'Armata\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/430\",\"name\":\"Edgar
         
     | 
| 
      
 214 
     | 
    
         
            +
                    Delgado\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 215 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/692\",\"name\":\"Pat
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Davidson\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/359\",\"name\":\"John
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Dell\",\"role\":\"inker\"}],\"returned\":20},\"characters\":{\"available\":19,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1035/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009596\",\"name\":\"Banshee
         
     | 
| 
      
 218 
     | 
    
         
            +
                    (Theresa Rourke)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009185\",\"name\":\"Black
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Cat\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009342\",\"name\":\"Hepzibah\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011100\",\"name\":\"Layla
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Miller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011068\",\"name\":\"M
         
     | 
| 
      
 221 
     | 
    
         
            +
                    (Monet St. Croix)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009413\",\"name\":\"Madrox\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011056\",\"name\":\"Multiple
         
     | 
| 
      
 222 
     | 
    
         
            +
                    Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009506\",\"name\":\"Proudstar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009430\",\"name\":\"Rachel
         
     | 
| 
      
 223 
     | 
    
         
            +
                    Grey\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009542\",\"name\":\"Rictor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009580\",\"name\":\"Shatterstar\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009610\",\"name\":\"Spider-Man\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011051\",\"name\":\"Strong
         
     | 
| 
      
 224 
     | 
    
         
            +
                    Guy\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009717\",\"name\":\"Wolfsbane\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"name\":\"Wolverine\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009722\",\"name\":\"X-23\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010738\",\"name\":\"X-Factor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010739\",\"name\":\"X-Factor
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Investigations\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":19},\"stories\":{\"available\":282,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1035/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4905\",\"name\":\"1
         
     | 
| 
      
 226 
     | 
    
         
            +
                    of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4906\",\"name\":\"1
         
     | 
| 
      
 227 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4907\",\"name\":\"2
         
     | 
| 
      
 228 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4908\",\"name\":\"3
         
     | 
| 
      
 229 
     | 
    
         
            +
                    of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4909\",\"name\":\"3
         
     | 
| 
      
 230 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4910\",\"name\":\"4
         
     | 
| 
      
 231 
     | 
    
         
            +
                    of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4911\",\"name\":\"4
         
     | 
| 
      
 232 
     | 
    
         
            +
                    of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4912\",\"name\":\"1
         
     | 
| 
      
 233 
     | 
    
         
            +
                    of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4913\",\"name\":\"1
         
     | 
| 
      
 234 
     | 
    
         
            +
                    of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4914\",\"name\":\"1
         
     | 
| 
      
 235 
     | 
    
         
            +
                    of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4915\",\"name\":\"1
         
     | 
| 
      
 236 
     | 
    
         
            +
                    of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5758\",\"name\":\"1
         
     | 
| 
      
 237 
     | 
    
         
            +
                    of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5759\",\"name\":\"1
         
     | 
| 
      
 238 
     | 
    
         
            +
                    of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5760\",\"name\":\"1
         
     | 
| 
      
 239 
     | 
    
         
            +
                    of 2\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5761\",\"name\":\"1
         
     | 
| 
      
 240 
     | 
    
         
            +
                    of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5762\",\"name\":\"2
         
     | 
| 
      
 241 
     | 
    
         
            +
                    of 2 - Civil War\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5763\",\"name\":\"2
         
     | 
| 
      
 242 
     | 
    
         
            +
                    of 2 - Civil War\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5764\",\"name\":\"1
         
     | 
| 
      
 243 
     | 
    
         
            +
                    of 3\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5765\",\"name\":\"1
         
     | 
| 
      
 244 
     | 
    
         
            +
                    of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5766\",\"name\":\"2
         
     | 
| 
      
 245 
     | 
    
         
            +
                    of 3\",\"type\":\"cover\"}],\"returned\":20},\"comics\":{\"available\":131,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1035/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3046\",\"name\":\"X-Factor
         
     | 
| 
      
 246 
     | 
    
         
            +
                    (2005) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3150\",\"name\":\"X-Factor
         
     | 
| 
      
 247 
     | 
    
         
            +
                    (2005) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3372\",\"name\":\"X-Factor
         
     | 
| 
      
 248 
     | 
    
         
            +
                    (2005) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3486\",\"name\":\"X-Factor
         
     | 
| 
      
 249 
     | 
    
         
            +
                    (2005) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3897\",\"name\":\"X-Factor
         
     | 
| 
      
 250 
     | 
    
         
            +
                    (2005) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4029\",\"name\":\"X-Factor
         
     | 
| 
      
 251 
     | 
    
         
            +
                    (2005) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4211\",\"name\":\"X-Factor
         
     | 
| 
      
 252 
     | 
    
         
            +
                    (2005) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4306\",\"name\":\"X-Factor
         
     | 
| 
      
 253 
     | 
    
         
            +
                    (2005) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4462\",\"name\":\"X-Factor
         
     | 
| 
      
 254 
     | 
    
         
            +
                    (2005) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4777\",\"name\":\"X-Factor
         
     | 
| 
      
 255 
     | 
    
         
            +
                    (2005) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5065\",\"name\":\"X-Factor
         
     | 
| 
      
 256 
     | 
    
         
            +
                    (2005) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5219\",\"name\":\"X-Factor
         
     | 
| 
      
 257 
     | 
    
         
            +
                    (2005) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5594\",\"name\":\"X-Factor
         
     | 
| 
      
 258 
     | 
    
         
            +
                    (2005) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5472\",\"name\":\"X-Factor
         
     | 
| 
      
 259 
     | 
    
         
            +
                    (2005) #13 (variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5710\",\"name\":\"X-Factor
         
     | 
| 
      
 260 
     | 
    
         
            +
                    (2005) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5847\",\"name\":\"X-Factor
         
     | 
| 
      
 261 
     | 
    
         
            +
                    (2005) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6000\",\"name\":\"X-Factor
         
     | 
| 
      
 262 
     | 
    
         
            +
                    (2005) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6155\",\"name\":\"X-Factor
         
     | 
| 
      
 263 
     | 
    
         
            +
                    (2005) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6302\",\"name\":\"X-Factor
         
     | 
| 
      
 264 
     | 
    
         
            +
                    (2005) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13465\",\"name\":\"X-Factor
         
     | 
| 
      
 265 
     | 
    
         
            +
                    (2005) #19\"}],\"returned\":20},\"events\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/1035/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
         
     | 
| 
      
 266 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
         
     | 
| 
      
 267 
     | 
    
         
            +
                    CompleX\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
         
     | 
| 
      
 268 
     | 
    
         
            +
                    Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/308\",\"name\":\"X-Men:
         
     | 
| 
      
 269 
     | 
    
         
            +
                    Regenesis\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 270 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":5},\"next\":null,\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2098\",\"name\":\"X-Factor
         
     | 
| 
      
 271 
     | 
    
         
            +
                    (1986 - 1998)\"}},{\"id\":10583,\"title\":\"X-Factor: Second Coming (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10583\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/10583/x-factor_second_coming_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"2011-08-11T16:12:58-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/5/c0/4cb608621d1f0\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10583/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 272 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/778\",\"name\":\"Valentine
         
     | 
| 
      
 273 
     | 
    
         
            +
                    De Landro\",\"role\":\"artist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/789\",\"name\":\"David
         
     | 
| 
      
 274 
     | 
    
         
            +
                    Yardin\",\"role\":\"artist\"}],\"returned\":3},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10583/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10583/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/64153\",\"name\":\"Cover
         
     | 
| 
      
 275 
     | 
    
         
            +
                    #64153\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/64154\",\"name\":\"Interior
         
     | 
| 
      
 276 
     | 
    
         
            +
                    #64154\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10583/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29500\",\"name\":\"X-Factor:
         
     | 
| 
      
 277 
     | 
    
         
            +
                    Second Coming (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10583/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 278 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":10950,\"title\":\"X-Factor:
         
     | 
| 
      
 279 
     | 
    
         
            +
                    Second Coming (2010 - Present)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10950\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/10950/x-factor_second_coming_2010_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2099,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/00/4beaf1b4940ed\",\"extension\":\"jpg\"},\"creators\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10950/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5249\",\"name\":\"Aubrey
         
     | 
| 
      
 280 
     | 
    
         
            +
                    Sitterson\",\"role\":\"writer\"}],\"returned\":1},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10950/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10950/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/76072\",\"name\":\"Cover
         
     | 
| 
      
 281 
     | 
    
         
            +
                    #76072\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/76073\",\"name\":\"Interior
         
     | 
| 
      
 282 
     | 
    
         
            +
                    #76073\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10950/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/33909\",\"name\":\"X-Factor:
         
     | 
| 
      
 283 
     | 
    
         
            +
                    Second Coming (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/10950/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 284 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":3839,\"title\":\"X-Force
         
     | 
| 
      
 285 
     | 
    
         
            +
                    (2008 - 2010)\",\"description\":\"When Cyclops has jobs too dirty for the
         
     | 
| 
      
 286 
     | 
    
         
            +
                    X-Men to handle, he calls X-Force. Wolverine, X-23, Warpath, Wolfsbane, Archangel
         
     | 
| 
      
 287 
     | 
    
         
            +
                    and Domino make up the most violent X-team of all time! If the odds look impossible
         
     | 
| 
      
 288 
     | 
    
         
            +
                    you want this X-Force on your side!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3839\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/3839/x-force_2008_-_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2008,\"endYear\":2010,\"rating\":\"Parental
         
     | 
| 
      
 289 
     | 
    
         
            +
                    Advisory\",\"type\":\"limited\",\"modified\":\"2013-02-13T17:31:52-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/80/511c13cb07373\",\"extension\":\"jpg\"},\"creators\":{\"available\":27,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3839/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/191\",\"name\":\"Kaare
         
     | 
| 
      
 290 
     | 
    
         
            +
                    Andrews\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/452\",\"name\":\"Chris
         
     | 
| 
      
 291 
     | 
    
         
            +
                    Eliopoulos\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/436\",\"name\":\"Adi
         
     | 
| 
      
 292 
     | 
    
         
            +
                    Granov\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1374\",\"name\":\"Sonia
         
     | 
| 
      
 293 
     | 
    
         
            +
                    Oback\",\"role\":\"other\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/412\",\"name\":\"Carlo
         
     | 
| 
      
 294 
     | 
    
         
            +
                    Barberi\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/162\",\"name\":\"John
         
     | 
| 
      
 295 
     | 
    
         
            +
                    Cassaday\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/73\",\"name\":\"Steve
         
     | 
| 
      
 296 
     | 
    
         
            +
                    Dillon\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/248\",\"name\":\"David
         
     | 
| 
      
 297 
     | 
    
         
            +
                    Finch\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11521\",\"name\":\"Greg
         
     | 
| 
      
 298 
     | 
    
         
            +
                    Horn\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5127\",\"name\":\"Travis
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Charest\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/600\",\"name\":\"Clayton
         
     | 
| 
      
 300 
     | 
    
         
            +
                    Crain\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5037\",\"name\":\"Ed
         
     | 
| 
      
 301 
     | 
    
         
            +
                    Dukeshire\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10050\",\"name\":\"Jason
         
     | 
| 
      
 302 
     | 
    
         
            +
                    Levesque\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4306\",\"name\":\"Laura
         
     | 
| 
      
 303 
     | 
    
         
            +
                    Martin\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1082\",\"name\":\"Ariel
         
     | 
| 
      
 304 
     | 
    
         
            +
                    Olivetti\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8813\",\"name\":\"Jon
         
     | 
| 
      
 305 
     | 
    
         
            +
                    Ennis\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10022\",\"name\":\"Justin
         
     | 
| 
      
 306 
     | 
    
         
            +
                    Gabrie\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/801\",\"name\":\"Craig
         
     | 
| 
      
 307 
     | 
    
         
            +
                    Kyle\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/649\",\"name\":\"Ed
         
     | 
| 
      
 308 
     | 
    
         
            +
                    McGuinness\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/212\",\"name\":\"Jason
         
     | 
| 
      
 309 
     | 
    
         
            +
                    Pearson\",\"role\":\"inker\"}],\"returned\":20},\"characters\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3839/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011207\",\"name\":\"Purifiers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009705\",\"name\":\"Warpath\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009717\",\"name\":\"Wolfsbane\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"name\":\"Wolverine\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009722\",\"name\":\"X-23\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009724\",\"name\":\"X-Force\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":7},\"stories\":{\"available\":130,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3839/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44403\",\"name\":\"Angels
         
     | 
| 
      
 310 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44404\",\"name\":\"Angels
         
     | 
| 
      
 311 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44405\",\"name\":\"Angels
         
     | 
| 
      
 312 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44406\",\"name\":\"Angels
         
     | 
| 
      
 313 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44407\",\"name\":\"Angels
         
     | 
| 
      
 314 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44408\",\"name\":\"Angels
         
     | 
| 
      
 315 
     | 
    
         
            +
                    and Demons 1 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44744\",\"name\":\"Angels
         
     | 
| 
      
 316 
     | 
    
         
            +
                    and Demons 2 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44745\",\"name\":\"Angels
         
     | 
| 
      
 317 
     | 
    
         
            +
                    and Demons 2 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/45810\",\"name\":\"Angels
         
     | 
| 
      
 318 
     | 
    
         
            +
                    and Demons 3 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/45811\",\"name\":\"Angels
         
     | 
| 
      
 319 
     | 
    
         
            +
                    and Demons 3 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46919\",\"name\":\"Angels
         
     | 
| 
      
 320 
     | 
    
         
            +
                    and Demons 4 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46920\",\"name\":\"Angels
         
     | 
| 
      
 321 
     | 
    
         
            +
                    and Demons 4 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46921\",\"name\":\"Angels
         
     | 
| 
      
 322 
     | 
    
         
            +
                    and Demons 4 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46922\",\"name\":\"Angels
         
     | 
| 
      
 323 
     | 
    
         
            +
                    and Demons 4 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47528\",\"name\":\"Angels
         
     | 
| 
      
 324 
     | 
    
         
            +
                    and Demons 5 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47529\",\"name\":\"Angels
         
     | 
| 
      
 325 
     | 
    
         
            +
                    and Demons 5 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47822\",\"name\":\"Angels
         
     | 
| 
      
 326 
     | 
    
         
            +
                    and Demons 6 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47823\",\"name\":\"Angels
         
     | 
| 
      
 327 
     | 
    
         
            +
                    and Demons 6 of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47824\",\"name\":\"Angels
         
     | 
| 
      
 328 
     | 
    
         
            +
                    and Demons 6 of 6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47825\",\"name\":\"Angels
         
     | 
| 
      
 329 
     | 
    
         
            +
                    and Demons 6 of 6\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":54,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3839/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20704\",\"name\":\"X-Force
         
     | 
| 
      
 330 
     | 
    
         
            +
                    (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20705\",\"name\":\"X-Force
         
     | 
| 
      
 331 
     | 
    
         
            +
                    (2008) #1 (Charest Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20706\",\"name\":\"X-Force
         
     | 
| 
      
 332 
     | 
    
         
            +
                    (2008) #1 (Bloody Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20895\",\"name\":\"X-Force
         
     | 
| 
      
 333 
     | 
    
         
            +
                    (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21028\",\"name\":\"X-Force
         
     | 
| 
      
 334 
     | 
    
         
            +
                    (2008) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21244\",\"name\":\"X-Force
         
     | 
| 
      
 335 
     | 
    
         
            +
                    (2008) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21243\",\"name\":\"X-Force
         
     | 
| 
      
 336 
     | 
    
         
            +
                    (2008) #4 (Bloody Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21561\",\"name\":\"X-Force
         
     | 
| 
      
 337 
     | 
    
         
            +
                    (2008) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21757\",\"name\":\"X-Force
         
     | 
| 
      
 338 
     | 
    
         
            +
                    (2008) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21756\",\"name\":\"X-Force
         
     | 
| 
      
 339 
     | 
    
         
            +
                    (2008) #6 (BLOODY VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21996\",\"name\":\"X-Force
         
     | 
| 
      
 340 
     | 
    
         
            +
                    (2008) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22322\",\"name\":\"X-Force
         
     | 
| 
      
 341 
     | 
    
         
            +
                    (2008) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22521\",\"name\":\"X-Force
         
     | 
| 
      
 342 
     | 
    
         
            +
                    (2008) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22929\",\"name\":\"X-Force
         
     | 
| 
      
 343 
     | 
    
         
            +
                    (2008) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23125\",\"name\":\"X-Force
         
     | 
| 
      
 344 
     | 
    
         
            +
                    (2008) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23617\",\"name\":\"X-Force
         
     | 
| 
      
 345 
     | 
    
         
            +
                    (2008) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23772\",\"name\":\"X-Force
         
     | 
| 
      
 346 
     | 
    
         
            +
                    (2008) #13\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23969\",\"name\":\"X-Force
         
     | 
| 
      
 347 
     | 
    
         
            +
                    (2008) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27979\",\"name\":\"X-Force
         
     | 
| 
      
 348 
     | 
    
         
            +
                    (2008) #14 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23970\",\"name\":\"X-Force
         
     | 
| 
      
 349 
     | 
    
         
            +
                    (2008) #14 (CRAIN (MW, 50/50 COVER))\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3839/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/298\",\"name\":\"Messiah
         
     | 
| 
      
 350 
     | 
    
         
            +
                    War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 351 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":2},\"next\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9976\",\"name\":\"Uncanny
         
     | 
| 
      
 352 
     | 
    
         
            +
                    X-Force (2010 - 2012)\"},\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4559\",\"name\":\"X-Men:
         
     | 
| 
      
 353 
     | 
    
         
            +
                    Messiah Complex (2008)\"}},{\"id\":3754,\"title\":\"X-Men Legacy (2008 - 2012)\",\"description\":\"Once
         
     | 
| 
      
 354 
     | 
    
         
            +
                    a troubled youth herself, Rogue has come full circle and now trains the newest
         
     | 
| 
      
 355 
     | 
    
         
            +
                    generation of X-Men to be heroes. Catch all your favorite mutants, old and
         
     | 
| 
      
 356 
     | 
    
         
            +
                    new, in this unique series!\",\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3754\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/3754/x-men_legacy_2008_-_2012?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2008,\"endYear\":2012,\"rating\":\"T+\",\"type\":\"ongoing\",\"modified\":\"2013-03-01T16:04:43-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/5/03/51311782d8f15\",\"extension\":\"jpg\"},\"creators\":{\"available\":87,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3754/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8571\",\"name\":\"Guru-eFX\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11562\",\"name\":\"Jean-Francois
         
     | 
| 
      
 357 
     | 
    
         
            +
                    Beaulieu\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/520\",\"name\":\"Rainier
         
     | 
| 
      
 358 
     | 
    
         
            +
                    Beredo\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8504\",\"name\":\"Frank
         
     | 
| 
      
 359 
     | 
    
         
            +
                    D'Armata\",\"role\":\"colorist\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1004\",\"name\":\"Daniel
         
     | 
| 
      
 360 
     | 
    
         
            +
                    Acuna\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4840\",\"name\":\"Joy
         
     | 
| 
      
 361 
     | 
    
         
            +
                    Ang\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9043\",\"name\":\"Mariah
         
     | 
| 
      
 362 
     | 
    
         
            +
                    Benes\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/694\",\"name\":\"Mark
         
     | 
| 
      
 363 
     | 
    
         
            +
                    Brooks\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/16\",\"name\":\"Alan
         
     | 
| 
      
 364 
     | 
    
         
            +
                    Davis\",\"role\":\"penciller (cover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8208\",\"name\":\"Chris
         
     | 
| 
      
 365 
     | 
    
         
            +
                    Allo\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4014\",\"name\":\"Axel
         
     | 
| 
      
 366 
     | 
    
         
            +
                    Alonso\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9799\",\"name\":\"David
         
     | 
| 
      
 367 
     | 
    
         
            +
                    Baldeon\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/512\",\"name\":\"Lee
         
     | 
| 
      
 368 
     | 
    
         
            +
                    Bermejo\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1279\",\"name\":\"Jon
         
     | 
| 
      
 369 
     | 
    
         
            +
                    Bogdanove\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1122\",\"name\":\"Philippe
         
     | 
| 
      
 370 
     | 
    
         
            +
                    Briones\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11748\",\"name\":\"Marco
         
     | 
| 
      
 371 
     | 
    
         
            +
                    Checchetto\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11614\",\"name\":\"Rafa
         
     | 
| 
      
 372 
     | 
    
         
            +
                    Lopez Blanco\",\"role\":\"Penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5251\",\"name\":\"Joe
         
     | 
| 
      
 373 
     | 
    
         
            +
                    Caramagna\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/366\",\"name\":\"Mike
         
     | 
| 
      
 374 
     | 
    
         
            +
                    Carey\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 375 
     | 
    
         
            +
                    Davidson\",\"role\":\"inker\"}],\"returned\":20},\"characters\":{\"available\":18,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3754/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009165\",\"name\":\"Avengers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009310\",\"name\":\"Emma
         
     | 
| 
      
 376 
     | 
    
         
            +
                    Frost\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009295\",\"name\":\"Exodus\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009313\",\"name\":\"Gambit\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009337\",\"name\":\"Havok\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009381\",\"name\":\"Jubilee\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009399\",\"name\":\"Legion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009417\",\"name\":\"Magneto\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009499\",\"name\":\"Polaris\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009504\",\"name\":\"Professor
         
     | 
| 
      
 377 
     | 
    
         
            +
                    X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009430\",\"name\":\"Rachel
         
     | 
| 
      
 378 
     | 
    
         
            +
                    Grey\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009546\",\"name\":\"Rogue\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009583\",\"name\":\"She-Hulk
         
     | 
| 
      
 379 
     | 
    
         
            +
                    (Jennifer Walters)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009629\",\"name\":\"Storm\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010791\",\"name\":\"Sub-Mariner\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"name\":\"Wolverine\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":18},\"stories\":{\"available\":206,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3754/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44239\",\"name\":\"1
         
     | 
| 
      
 380 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44240\",\"name\":\"1
         
     | 
| 
      
 381 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44590\",\"name\":\"2
         
     | 
| 
      
 382 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44591\",\"name\":\"2
         
     | 
| 
      
 383 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/45165\",\"name\":\"3
         
     | 
| 
      
 384 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/45166\",\"name\":\"3
         
     | 
| 
      
 385 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46758\",\"name\":\"4
         
     | 
| 
      
 386 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46759\",\"name\":\"4
         
     | 
| 
      
 387 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46760\",\"name\":\"5
         
     | 
| 
      
 388 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46761\",\"name\":\"5
         
     | 
| 
      
 389 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47083\",\"name\":\"1
         
     | 
| 
      
 390 
     | 
    
         
            +
                    of 5\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47084\",\"name\":\"1
         
     | 
| 
      
 391 
     | 
    
         
            +
                    of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47395\",\"name\":\"1
         
     | 
| 
      
 392 
     | 
    
         
            +
                    of 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47396\",\"name\":\"1
         
     | 
| 
      
 393 
     | 
    
         
            +
                    of 4\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47703\",\"name\":\"2
         
     | 
| 
      
 394 
     | 
    
         
            +
                    of 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47704\",\"name\":\"2
         
     | 
| 
      
 395 
     | 
    
         
            +
                    of 4\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/48166\",\"name\":\"3
         
     | 
| 
      
 396 
     | 
    
         
            +
                    of 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/48167\",\"name\":\"3
         
     | 
| 
      
 397 
     | 
    
         
            +
                    of 4\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49012\",\"name\":\"4
         
     | 
| 
      
 398 
     | 
    
         
            +
                    of 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49013\",\"name\":\"4
         
     | 
| 
      
 399 
     | 
    
         
            +
                    of 4\",\"type\":\"interiorStory\"}],\"returned\":20},\"comics\":{\"available\":96,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3754/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20632\",\"name\":\"X-Men
         
     | 
| 
      
 400 
     | 
    
         
            +
                    Legacy (2008) #208\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20819\",\"name\":\"X-Men
         
     | 
| 
      
 401 
     | 
    
         
            +
                    Legacy (2008) #209\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20957\",\"name\":\"X-Men
         
     | 
| 
      
 402 
     | 
    
         
            +
                    Legacy (2008) #210\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21166\",\"name\":\"X-Men
         
     | 
| 
      
 403 
     | 
    
         
            +
                    Legacy (2008) #211\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21167\",\"name\":\"X-Men
         
     | 
| 
      
 404 
     | 
    
         
            +
                    Legacy (2008) #212\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21317\",\"name\":\"X-Men
         
     | 
| 
      
 405 
     | 
    
         
            +
                    Legacy (2008) #213\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21495\",\"name\":\"X-Men
         
     | 
| 
      
 406 
     | 
    
         
            +
                    Legacy (2008) #214\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21698\",\"name\":\"X-Men
         
     | 
| 
      
 407 
     | 
    
         
            +
                    Legacy (2008) #215\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21923\",\"name\":\"X-Men
         
     | 
| 
      
 408 
     | 
    
         
            +
                    Legacy (2008) #216\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22254\",\"name\":\"X-Men
         
     | 
| 
      
 409 
     | 
    
         
            +
                    Legacy (2008) #217\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22462\",\"name\":\"X-Men
         
     | 
| 
      
 410 
     | 
    
         
            +
                    Legacy (2008) #218\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22857\",\"name\":\"X-Men
         
     | 
| 
      
 411 
     | 
    
         
            +
                    Legacy (2008) #219\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23073\",\"name\":\"X-Men
         
     | 
| 
      
 412 
     | 
    
         
            +
                    Legacy (2008) #220\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23563\",\"name\":\"X-Men
         
     | 
| 
      
 413 
     | 
    
         
            +
                    Legacy (2008) #221\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23734\",\"name\":\"X-Men
         
     | 
| 
      
 414 
     | 
    
         
            +
                    Legacy (2008) #222\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23917\",\"name\":\"X-Men
         
     | 
| 
      
 415 
     | 
    
         
            +
                    Legacy (2008) #223\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23918\",\"name\":\"X-Men
         
     | 
| 
      
 416 
     | 
    
         
            +
                    Legacy (2008) #223\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27341\",\"name\":\"X-Men
         
     | 
| 
      
 417 
     | 
    
         
            +
                    Legacy (2008) #223 (WOLVERINE ART VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24129\",\"name\":\"X-Men
         
     | 
| 
      
 418 
     | 
    
         
            +
                    Legacy (2008) #224\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27342\",\"name\":\"X-Men
         
     | 
| 
      
 419 
     | 
    
         
            +
                    Legacy (2008) #225\"}],\"returned\":20},\"events\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/3754/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
         
     | 
| 
      
 420 
     | 
    
         
            +
                    of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
         
     | 
| 
      
 421 
     | 
    
         
            +
                    VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
         
     | 
| 
      
 422 
     | 
    
         
            +
                    Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/308\",\"name\":\"X-Men:
         
     | 
| 
      
 423 
     | 
    
         
            +
                    Regenesis\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 424 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":5},\"next\":null,\"previous\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/403\",\"name\":\"X-Men
         
     | 
| 
      
 425 
     | 
    
         
            +
                    (2004 - 2007)\"}},{\"id\":9981,\"title\":\"X-Men: Hellbound (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9981\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9981/x-men_hellbound_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"2011-06-01T17:18:41-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/50/4baa86c671fb5\",\"extension\":\"jpg\"},\"creators\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9981/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10288\",\"name\":\"Marko
         
     | 
| 
      
 426 
     | 
    
         
            +
                    Djurdjevic\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8584\",\"name\":\"Harvey
         
     | 
| 
      
 427 
     | 
    
         
            +
                    Tolibao\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/444\",\"name\":\"Tom
         
     | 
| 
      
 428 
     | 
    
         
            +
                    Raney\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/803\",\"name\":\"Chris
         
     | 
| 
      
 429 
     | 
    
         
            +
                    Yost\",\"role\":\"writer\"}],\"returned\":4},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9981/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009415\",\"name\":\"Magik
         
     | 
| 
      
 430 
     | 
    
         
            +
                    (Illyana Rasputin)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":2},\"stories\":{\"available\":12,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9981/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74310\",\"name\":\"Cover
         
     | 
| 
      
 431 
     | 
    
         
            +
                    #74310\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74311\",\"name\":\"Interior
         
     | 
| 
      
 432 
     | 
    
         
            +
                    #74311\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74312\",\"name\":\"Cover
         
     | 
| 
      
 433 
     | 
    
         
            +
                    #74312\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74313\",\"name\":\"Interior
         
     | 
| 
      
 434 
     | 
    
         
            +
                    #74313\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74318\",\"name\":\"Cover
         
     | 
| 
      
 435 
     | 
    
         
            +
                    #74318\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74319\",\"name\":\"Interior
         
     | 
| 
      
 436 
     | 
    
         
            +
                    #74319\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/78959\",\"name\":\"Cover
         
     | 
| 
      
 437 
     | 
    
         
            +
                    #78959\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/78960\",\"name\":\"Cover
         
     | 
| 
      
 438 
     | 
    
         
            +
                    #78960\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/78961\",\"name\":\"Interior
         
     | 
| 
      
 439 
     | 
    
         
            +
                    #78961\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/78962\",\"name\":\"Interior
         
     | 
| 
      
 440 
     | 
    
         
            +
                    #78962\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80702\",\"name\":\"Cover
         
     | 
| 
      
 441 
     | 
    
         
            +
                    #80702\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80703\",\"name\":\"Interior
         
     | 
| 
      
 442 
     | 
    
         
            +
                    #80703\",\"type\":\"interiorStory\"}],\"returned\":12},\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9981/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32987\",\"name\":\"X-Men:
         
     | 
| 
      
 443 
     | 
    
         
            +
                    Hellbound (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32988\",\"name\":\"X-Men:
         
     | 
| 
      
 444 
     | 
    
         
            +
                    Hellbound (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32991\",\"name\":\"X-Men:
         
     | 
| 
      
 445 
     | 
    
         
            +
                    Hellbound (2010) #3\"}],\"returned\":3},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9981/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 446 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":9679,\"title\":\"X-Men:
         
     | 
| 
      
 447 
     | 
    
         
            +
                    Second Coming (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9679\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9679/x-men_second_coming_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"collection\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/a0/4c1155ac0ddc7\",\"extension\":\"jpg\"},\"creators\":{\"available\":9,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9679/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/366\",\"name\":\"Mike
         
     | 
| 
      
 448 
     | 
    
         
            +
                    Carey\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1132\",\"name\":\"Matt
         
     | 
| 
      
 449 
     | 
    
         
            +
                    Fraction\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/801\",\"name\":\"Craig
         
     | 
| 
      
 450 
     | 
    
         
            +
                    Kyle\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10409\",\"name\":\"Zeb
         
     | 
| 
      
 451 
     | 
    
         
            +
                    Wells\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/803\",\"name\":\"Chris
         
     | 
| 
      
 452 
     | 
    
         
            +
                    Yost\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/277\",\"name\":\"Terry
         
     | 
| 
      
 453 
     | 
    
         
            +
                    Dodson\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/248\",\"name\":\"David
         
     | 
| 
      
 454 
     | 
    
         
            +
                    Finch\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/425\",\"name\":\"Greg
         
     | 
| 
      
 455 
     | 
    
         
            +
                    Land\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10061\",\"name\":\"Ibraim
         
     | 
| 
      
 456 
     | 
    
         
            +
                    Roberson\",\"role\":\"penciller\"}],\"returned\":9},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9679/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9679/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/64191\",\"name\":\"Cover
         
     | 
| 
      
 457 
     | 
    
         
            +
                    From X-Men: Second Coming (2010)\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/64192\",\"name\":\"Interior
         
     | 
| 
      
 458 
     | 
    
         
            +
                    Story 1 From X-Men: Second Coming (2010)\",\"type\":\"interiorStory\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9679/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29519\",\"name\":\"X-Men:
         
     | 
| 
      
 459 
     | 
    
         
            +
                    Second Coming (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9679/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 460 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":9359,\"title\":\"X-Men:
         
     | 
| 
      
 461 
     | 
    
         
            +
                    Second Coming (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9359\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9359/x-men_second_coming_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"2013-03-01T16:09:40-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/0/03/51311888cb511\",\"extension\":\"jpg\"},\"creators\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9359/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/248\",\"name\":\"David
         
     | 
| 
      
 462 
     | 
    
         
            +
                    Finch\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/436\",\"name\":\"Adi
         
     | 
| 
      
 463 
     | 
    
         
            +
                    Granov\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/801\",\"name\":\"Craig
         
     | 
| 
      
 464 
     | 
    
         
            +
                    Kyle\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/803\",\"name\":\"Chris
         
     | 
| 
      
 465 
     | 
    
         
            +
                    Yost\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10612\",\"name\":\"MICHAEL
         
     | 
| 
      
 466 
     | 
    
         
            +
                    TURNER, PETER STEIGERWALD\",\"role\":\"colorist\"}],\"returned\":5},\"characters\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9359/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009214\",\"name\":\"Cable\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011428\",\"name\":\"Hope
         
     | 
| 
      
 467 
     | 
    
         
            +
                    Summers\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009718\",\"name\":\"Wolverine\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":6},\"stories\":{\"available\":18,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9359/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/69374\",\"name\":\"Cover
         
     | 
| 
      
 468 
     | 
    
         
            +
                    #69374\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/69375\",\"name\":\"Interior
         
     | 
| 
      
 469 
     | 
    
         
            +
                    #69375\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/73415\",\"name\":\"Cover
         
     | 
| 
      
 470 
     | 
    
         
            +
                    #73415\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/73416\",\"name\":\"Interior
         
     | 
| 
      
 471 
     | 
    
         
            +
                    #73416\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/73671\",\"name\":\"Cover
         
     | 
| 
      
 472 
     | 
    
         
            +
                    #73671\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/73674\",\"name\":\"Interior
         
     | 
| 
      
 473 
     | 
    
         
            +
                    #73674\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74653\",\"name\":\"Cover
         
     | 
| 
      
 474 
     | 
    
         
            +
                    #74653\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74654\",\"name\":\"Interior
         
     | 
| 
      
 475 
     | 
    
         
            +
                    #74654\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75730\",\"name\":\"Cover
         
     | 
| 
      
 476 
     | 
    
         
            +
                    #75730\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75731\",\"name\":\"Interior
         
     | 
| 
      
 477 
     | 
    
         
            +
                    #75731\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/76420\",\"name\":\"Cover
         
     | 
| 
      
 478 
     | 
    
         
            +
                    #76420\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80471\",\"name\":\"Cover
         
     | 
| 
      
 479 
     | 
    
         
            +
                    #80471\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80472\",\"name\":\"Interior
         
     | 
| 
      
 480 
     | 
    
         
            +
                    #80472\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80856\",\"name\":\"Cover
         
     | 
| 
      
 481 
     | 
    
         
            +
                    #80856\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80857\",\"name\":\"Interior
         
     | 
| 
      
 482 
     | 
    
         
            +
                    #80857\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/81072\",\"name\":\"Cover
         
     | 
| 
      
 483 
     | 
    
         
            +
                    #81072\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/81073\",\"name\":\"Interior
         
     | 
| 
      
 484 
     | 
    
         
            +
                    #81073\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/81914\",\"name\":\"Cover
         
     | 
| 
      
 485 
     | 
    
         
            +
                    #81914\",\"type\":\"cover\"}],\"returned\":18},\"comics\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9359/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30274\",\"name\":\"X-Men:
         
     | 
| 
      
 486 
     | 
    
         
            +
                    Second Coming (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32507\",\"name\":\"X-Men:
         
     | 
| 
      
 487 
     | 
    
         
            +
                    Second Coming (2010) #1 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36524\",\"name\":\"X-Men:
         
     | 
| 
      
 488 
     | 
    
         
            +
                    Second Coming (2010) #1 (3RD PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34269\",\"name\":\"X-Men:
         
     | 
| 
      
 489 
     | 
    
         
            +
                    Second Coming (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/33166\",\"name\":\"X-Men:
         
     | 
| 
      
 490 
     | 
    
         
            +
                    Second Coming (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36781\",\"name\":\"X-Men:
         
     | 
| 
      
 491 
     | 
    
         
            +
                    Second Coming (2010) #2 (VARIANT)\"}],\"returned\":6},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9359/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 492 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":13423,\"title\":\"X-Men:
         
     | 
| 
      
 493 
     | 
    
         
            +
                    Second Coming - Revelations (2010 - Present)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13423\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/13423/x-men_second_coming_-_revelations_2010_-_present?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2099,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/50/4c4df67b6aa6b\",\"extension\":\"jpg\"},\"creators\":{\"available\":7,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13423/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/121\",\"name\":\"Peter
         
     | 
| 
      
 494 
     | 
    
         
            +
                    David\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5635\",\"name\":\"Simon
         
     | 
| 
      
 495 
     | 
    
         
            +
                    Spurrier\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/803\",\"name\":\"Chris
         
     | 
| 
      
 496 
     | 
    
         
            +
                    Yost\",\"role\":\"writer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 497 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/248\",\"name\":\"David
         
     | 
| 
      
 498 
     | 
    
         
            +
                    Finch\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/778\",\"name\":\"Valentine
         
     | 
| 
      
 499 
     | 
    
         
            +
                    De Landro\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8584\",\"name\":\"Harvey
         
     | 
| 
      
 500 
     | 
    
         
            +
                    Tolibao\",\"role\":\"penciler\"}],\"returned\":7},\"characters\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13423/characters\",\"items\":[],\"returned\":0},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13423/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/82767\",\"name\":\"Cover
         
     | 
| 
      
 501 
     | 
    
         
            +
                    #82767\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/82768\",\"name\":\"\",\"type\":\"\"}],\"returned\":2},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13423/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37369\",\"name\":\"X-Men:
         
     | 
| 
      
 502 
     | 
    
         
            +
                    Second Coming - Revelations (Hardcover)\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/13423/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 503 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null},{\"id\":9808,\"title\":\"X-Men:
         
     | 
| 
      
 504 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9808\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9808/x-men_second_coming_-_revelations_blind_science_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/4baa8339dd6e7\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 505 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1369\",\"name\":\"Gerald
         
     | 
| 
      
 506 
     | 
    
         
            +
                    Parel\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5635\",\"name\":\"Simon
         
     | 
| 
      
 507 
     | 
    
         
            +
                    Spurrier\",\"role\":\"writer\"}],\"returned\":3},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":2},\"stories\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74304\",\"name\":\"Cover
         
     | 
| 
      
 508 
     | 
    
         
            +
                    #74304\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74306\",\"name\":\"Interior
         
     | 
| 
      
 509 
     | 
    
         
            +
                    #74306\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75240\",\"name\":\"Cover
         
     | 
| 
      
 510 
     | 
    
         
            +
                    #75240\",\"type\":\"cover\"}],\"returned\":3},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32984\",\"name\":\"X-Men:
         
     | 
| 
      
 511 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 512 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 513 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 514 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 515 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 516 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 517 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/9808?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 518 
     | 
    
         
            +
                body:
         
     | 
| 
      
 519 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 520 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 521 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 522 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 523 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 524 
     | 
    
         
            +
              response:
         
     | 
| 
      
 525 
     | 
    
         
            +
                status:
         
     | 
| 
      
 526 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 527 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 528 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 529 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 530 
     | 
    
         
            +
                  - 4aa3d4817b31e9fd4eb548c7ec6108ca15e44e1f
         
     | 
| 
      
 531 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 532 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 533 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 534 
     | 
    
         
            +
                  - '2389'
         
     | 
| 
      
 535 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 536 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:32:31 GMT
         
     | 
| 
      
 537 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 538 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 539 
     | 
    
         
            +
                body:
         
     | 
| 
      
 540 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 541 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"4aa3d4817b31e9fd4eb548c7ec6108ca15e44e1f\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":9808,\"title\":\"X-Men:
         
     | 
| 
      
 542 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9808\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9808/x-men_second_coming_-_revelations_blind_science_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/4baa8339dd6e7\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 543 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1369\",\"name\":\"Gerald
         
     | 
| 
      
 544 
     | 
    
         
            +
                    Parel\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5635\",\"name\":\"Simon
         
     | 
| 
      
 545 
     | 
    
         
            +
                    Spurrier\",\"role\":\"writer\"}],\"returned\":3},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":2},\"stories\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74304\",\"name\":\"Cover
         
     | 
| 
      
 546 
     | 
    
         
            +
                    #74304\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74306\",\"name\":\"Interior
         
     | 
| 
      
 547 
     | 
    
         
            +
                    #74306\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75240\",\"name\":\"Cover
         
     | 
| 
      
 548 
     | 
    
         
            +
                    #75240\",\"type\":\"cover\"}],\"returned\":3},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32984\",\"name\":\"X-Men:
         
     | 
| 
      
 549 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 550 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 551 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 552 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 553 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 554 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 555 
     | 
    
         
            +
                uri: http://gateway.marvel.com/v1/public/series/9808?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
         
     | 
| 
      
 556 
     | 
    
         
            +
                body:
         
     | 
| 
      
 557 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 558 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 559 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 560 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 561 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 562 
     | 
    
         
            +
              response:
         
     | 
| 
      
 563 
     | 
    
         
            +
                status:
         
     | 
| 
      
 564 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 565 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 566 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 567 
     | 
    
         
            +
                  Etag:
         
     | 
| 
      
 568 
     | 
    
         
            +
                  - 4aa3d4817b31e9fd4eb548c7ec6108ca15e44e1f
         
     | 
| 
      
 569 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 570 
     | 
    
         
            +
                  - application/json
         
     | 
| 
      
 571 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 572 
     | 
    
         
            +
                  - '2389'
         
     | 
| 
      
 573 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 574 
     | 
    
         
            +
                  - Tue, 11 Feb 2014 13:32:32 GMT
         
     | 
| 
      
 575 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 576 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 577 
     | 
    
         
            +
                body:
         
     | 
| 
      
 578 
     | 
    
         
            +
                  encoding: ASCII-8BIT
         
     | 
| 
      
 579 
     | 
    
         
            +
                  string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"4aa3d4817b31e9fd4eb548c7ec6108ca15e44e1f\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":9808,\"title\":\"X-Men:
         
     | 
| 
      
 580 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010)\",\"description\":null,\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9808\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/series/9808/x-men_second_coming_-_revelations_blind_science_2010?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"startYear\":2010,\"endYear\":2010,\"rating\":\"\",\"type\":\"\",\"modified\":\"-0001-11-30T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/a0/4baa8339dd6e7\",\"extension\":\"jpg\"},\"creators\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9224\",\"name\":\"Paul
         
     | 
| 
      
 581 
     | 
    
         
            +
                    Davidson\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1369\",\"name\":\"Gerald
         
     | 
| 
      
 582 
     | 
    
         
            +
                    Parel\",\"role\":\"penciler\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5635\",\"name\":\"Simon
         
     | 
| 
      
 583 
     | 
    
         
            +
                    Spurrier\",\"role\":\"writer\"}],\"returned\":3},\"characters\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009171\",\"name\":\"Bastion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":2},\"stories\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74304\",\"name\":\"Cover
         
     | 
| 
      
 584 
     | 
    
         
            +
                    #74304\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/74306\",\"name\":\"Interior
         
     | 
| 
      
 585 
     | 
    
         
            +
                    #74306\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75240\",\"name\":\"Cover
         
     | 
| 
      
 586 
     | 
    
         
            +
                    #75240\",\"type\":\"cover\"}],\"returned\":3},\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32984\",\"name\":\"X-Men:
         
     | 
| 
      
 587 
     | 
    
         
            +
                    Second Coming - Revelations: Blind Science (2010) #1\"}],\"returned\":1},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/series/9808/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/279\",\"name\":\"X-Men:
         
     | 
| 
      
 588 
     | 
    
         
            +
                    Second Coming\"}],\"returned\":1},\"next\":null,\"previous\":null}]}}"
         
     | 
| 
      
 589 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 590 
     | 
    
         
            +
              recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
         
     | 
| 
      
 591 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     |