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.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/.rspec +1 -1
  4. data/.travis.yml +7 -0
  5. data/{LICENSE.txt → LICENSE.md} +2 -2
  6. data/README.md +19 -21
  7. data/Rakefile +1 -1
  8. data/config/params.yaml +0 -0
  9. data/config/ultron.yaml +2 -0
  10. data/examples/links.rb +0 -0
  11. data/lib/ultron.rb +29 -4
  12. data/lib/ultron/api/character.rb +19 -0
  13. data/lib/ultron/api/characters.rb +14 -0
  14. data/lib/ultron/api/comic.rb +15 -0
  15. data/lib/ultron/api/comics.rb +14 -0
  16. data/lib/ultron/api/creator.rb +19 -0
  17. data/lib/ultron/api/creators.rb +14 -0
  18. data/lib/ultron/api/entities.rb +45 -0
  19. data/lib/ultron/api/entity.rb +51 -0
  20. data/lib/ultron/api/event.rb +15 -0
  21. data/lib/ultron/api/events.rb +14 -0
  22. data/lib/ultron/api/series.rb +23 -0
  23. data/lib/ultron/api/serieses.rb +16 -0
  24. data/lib/ultron/api/stories.rb +14 -0
  25. data/lib/ultron/api/story.rb +15 -0
  26. data/lib/ultron/config.rb +35 -0
  27. data/lib/ultron/connection.rb +41 -0
  28. data/lib/ultron/helpers.rb +25 -0
  29. data/lib/ultron/version.rb +1 -1
  30. data/spec/cassettes/Ultron_API_Character/should_have_a_series_set.yml +88 -0
  31. data/spec/cassettes/Ultron_API_Character/should_have_an_events_set.yml +32 -0
  32. data/spec/cassettes/Ultron_API_Character/should_have_the_correct_name.yml +88 -0
  33. data/spec/cassettes/Ultron_API_Character/should_have_the_correct_sets/events.yml +32 -0
  34. data/spec/cassettes/Ultron_API_Character/should_not_have_any_events.yml +32 -0
  35. data/spec/cassettes/Ultron_API_CharacterSet/should_have_the_correct_first_character.yml +1616 -0
  36. data/spec/cassettes/Ultron_API_Characters/characters_filtered_by_comic/should_have_the_correct_first_character.yml +1616 -0
  37. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_comic.yml +1862 -0
  38. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_event.yml +3876 -0
  39. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_series.yml +743 -0
  40. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_story.yml +345 -0
  41. data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_id.yml +114 -0
  42. data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml +114 -0
  43. data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_id.yml +99 -0
  44. data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_name.yml +99 -0
  45. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_id.yml +644 -0
  46. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_name.yml +644 -0
  47. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_resourceURI.yml +644 -0
  48. data/spec/cassettes/Ultron_API_Characters/parameterize_the_request/should_let_us_set_multiple_parameters.yml +1595 -0
  49. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_comic.yml +2737 -0
  50. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_event.yml +7345 -0
  51. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_series.yml +743 -0
  52. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_story.yml +231 -0
  53. data/spec/cassettes/Ultron_API_Characters/should_have_genarate_a_list_of_characters_filtered_by_comic.yml +1616 -0
  54. data/spec/cassettes/Ultron_API_Characters/should_have_the_correct_first_character.yml +1616 -0
  55. data/spec/cassettes/Ultron_API_Characters/should_not_generate_a_list_of_characters_filtered_by_creator.yml +31 -0
  56. data/spec/cassettes/Ultron_API_Characters/should_not_generate_lists_of_characters/filtered_by_creator.yml +31 -0
  57. data/spec/cassettes/Ultron_API_Comic/should_have_a_list_of_characters.yml +46 -0
  58. data/spec/cassettes/Ultron_API_Comic/should_have_openstruct_method-style_attribute_accessors.yml +46 -0
  59. data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_title.yml +46 -0
  60. data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_year.yml +46 -0
  61. data/spec/cassettes/Ultron_API_ComicSet/should_have_the_correct_first_comic.yml +2013 -0
  62. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_character.yml +2059 -0
  63. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_creator.yml +2177 -0
  64. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_event.yml +1701 -0
  65. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_series.yml +123 -0
  66. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_stories.yml +499 -0
  67. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_story.yml +577 -0
  68. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_id.yml +1039 -0
  69. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_name.yml +946 -0
  70. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_resourceURI.yml +1039 -0
  71. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_title.yml +1039 -0
  72. data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_dateRange.yml +1613 -0
  73. data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_limit.yml +96 -0
  74. data/spec/cassettes/Ultron_API_Comics/should_generate_a_list_of_comics_filtered_by_character.yml +3955 -0
  75. data/spec/cassettes/Ultron_API_Comics/should_have_the_correct_first_comic.yml +2012 -0
  76. data/spec/cassettes/Ultron_API_ComicsSet/should_have_the_correct_first_comic.yml +2013 -0
  77. data/spec/cassettes/Ultron_API_Creator/it_should_have_the_correct_sets/comics.yml +2029 -0
  78. data/spec/cassettes/Ultron_API_Creator/should_have_a_comics_set.yml +2022 -0
  79. data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_comic.yml +2029 -0
  80. data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_name.yml +243 -0
  81. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_comic.yml +1205 -0
  82. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_event.yml +2778 -0
  83. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_series.yml +4555 -0
  84. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_story.yml +1253 -0
  85. data/spec/cassettes/Ultron_API_Creators/get_a_creator_by_name/should_return_the_correct_creator.yml +30 -0
  86. data/spec/cassettes/Ultron_API_Creators/get_the_fourth_creator_off_the_list/should_have_the_right_name.yml +1205 -0
  87. data/spec/cassettes/Ultron_API_Creators/get_the_second_creator_off_the_list/should_have_the_right_name.yml +384 -0
  88. data/spec/cassettes/Ultron_API_Creators/should_have_the_correct_first_comic.yml +32 -0
  89. data/spec/cassettes/Ultron_API_Creators/should_not_generate_a_list_of_creators_filtered_by_character.yml +31 -0
  90. data/spec/cassettes/Ultron_API_Creators/should_not_generate_lists_of_creators/filtered_by_character.yml +31 -0
  91. data/spec/cassettes/Ultron_API_Event/should_have_a_list_of_characters.yml +195 -0
  92. data/spec/cassettes/Ultron_API_Event/should_have_the_correct_first_character.yml +195 -0
  93. data/spec/cassettes/Ultron_API_Event/should_have_the_correct_title.yml +108 -0
  94. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_character.yml +5161 -0
  95. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_comic.yml +363 -0
  96. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_creator.yml +9257 -0
  97. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_series.yml +240 -0
  98. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_story.yml +375 -0
  99. data/spec/cassettes/Ultron_API_Events/get_the_second_event_off_the_list/should_have_the_right_name.yml +4762 -0
  100. data/spec/cassettes/Ultron_API_Series/should_have_the_correct_sets/not_series.yml +40 -0
  101. data/spec/cassettes/Ultron_API_Series/should_have_the_correct_title.yml +40 -0
  102. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_character.yml +3618 -0
  103. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_comic.yml +31 -0
  104. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_creator.yml +1104 -0
  105. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_event.yml +591 -0
  106. data/spec/cassettes/Ultron_API_Serieses/get_the_third_event_off_the_list/should_have_the_right_name.yml +1780 -0
  107. data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml +31 -0
  108. data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml +31 -0
  109. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_character.yml +342 -0
  110. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_comic.yml +110 -0
  111. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_creator.yml +1041 -0
  112. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_event.yml +846 -0
  113. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_series.yml +143 -0
  114. data/spec/cassettes/Ultron_API_Stories/get_the_fourth_story_off_the_list/should_have_the_right_name.yml +686 -0
  115. data/spec/cassettes/Ultron_API_Stories/get_the_second_story_off_the_list/should_have_the_right_name.yml +686 -0
  116. data/spec/cassettes/Ultron_API_Story/should_have_the_correct_title.yml +40 -0
  117. data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +559 -0
  118. data/spec/spec_helper.rb +3 -0
  119. data/spec/support/vcr_setup.rb +17 -0
  120. data/spec/ultron/api/character_spec.rb +50 -0
  121. data/spec/ultron/api/comic_spec.rb +55 -0
  122. data/spec/ultron/api/creator_spec.rb +50 -0
  123. data/spec/ultron/api/event_spec.rb +50 -0
  124. data/spec/ultron/api/filtered_sets/characters_filtered_spec.rb +53 -0
  125. data/spec/ultron/api/filtered_sets/comics_filtered_spec.rb +51 -0
  126. data/spec/ultron/api/filtered_sets/creators_filtered_spec.rb +51 -0
  127. data/spec/ultron/api/filtered_sets/events_filtered_spec.rb +51 -0
  128. data/spec/ultron/api/filtered_sets/series_filtered_spec.rb +50 -0
  129. data/spec/ultron/api/filtered_sets/stories_filtered_spec.rb +52 -0
  130. data/spec/ultron/api/series_spec.rb +46 -0
  131. data/spec/ultron/api/sets/characters_spec.rb +71 -0
  132. data/spec/ultron/api/sets/comics_spec.rb +46 -0
  133. data/spec/ultron/api/sets/creators_spec.rb +29 -0
  134. data/spec/ultron/api/sets/events_spec.rb +26 -0
  135. data/spec/ultron/api/sets/serieses_spec.rb +26 -0
  136. data/spec/ultron/api/sets/stories_spec.rb +26 -0
  137. data/spec/ultron/api/story_spec.rb +46 -0
  138. data/spec/ultron/auth_spec.rb +13 -0
  139. data/spec/ultron/config_spec.rb +16 -0
  140. data/spec/ultron/connection_spec.rb +33 -0
  141. data/spec/ultron/helpers_spec.rb +11 -0
  142. data/ultron.gemspec +16 -11
  143. metadata +346 -50
  144. data/lib/ultron/characters.rb +0 -9
  145. data/spec/ultron/characters_spec.rb +0 -12
@@ -0,0 +1,384 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/creators?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&offset=600&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
+ - 647b9f7c00603e25d7432bf7d0a4dd246435ef75
19
+ Content-Type:
20
+ - application/json
21
+ Content-Length:
22
+ - '55093'
23
+ Date:
24
+ - Mon, 10 Feb 2014 16:18:12 GMT
25
+ Connection:
26
+ - keep-alive
27
+ body:
28
+ encoding: ASCII-8BIT
29
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"647b9f7c00603e25d7432bf7d0a4dd246435ef75\",\"data\":{\"offset\":600,\"limit\":20,\"total\":5558,\"count\":20,\"results\":[{\"id\":10137,\"firstName\":\"Michele\",\"middleName\":\"\",\"lastName\":\"Bertilorenzi\",\"suffix\":\"\",\"fullName\":\"Michele
30
+ Bertilorenzi\",\"modified\":\"2013-01-28T16:38:23-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10137\",\"comics\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10137/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36473\",\"name\":\"Daken:
31
+ Dark Wolverine (2010) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36474\",\"name\":\"Daken:
32
+ Dark Wolverine (2010) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36472\",\"name\":\"Daken:
33
+ Dark Wolverine (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40525\",\"name\":\"Daken:
34
+ Dark Wolverine (2010) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34286\",\"name\":\"Daredevil:
35
+ Black and White (2010) #1\"}],\"returned\":5},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10137/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9368\",\"name\":\"Daken:
36
+ Dark Wolverine (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/11676\",\"name\":\"Daredevil:
37
+ Black and White (2010)\"}],\"returned\":2},\"stories\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10137/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/76454\",\"name\":\"Interior
38
+ #76454\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80974\",\"name\":\"Interior
39
+ #80974\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80976\",\"name\":\"Daken:
40
+ Dark Wolverine (2010) #14 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/80978\",\"name\":\"Interior
41
+ #80978\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/81770\",\"name\":\"Interior
42
+ #81770\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/91873\",\"name\":\"Interior
43
+ #91873\",\"type\":\"interiorStory\"}],\"returned\":6},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10137/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/10137/michele_bertilorenzi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":9181,\"firstName\":\"Nicholas\",\"middleName\":\"\",\"lastName\":\"Bertozzi\",\"suffix\":\"\",\"fullName\":\"Nicholas
44
+ Bertozzi\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/1/20/4bb3bba51fc0b\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9181\",\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31489\",\"name\":\"Strange
45
+ Tales (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/25919\",\"name\":\"Strange
46
+ Tales (2009) #1\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8098\",\"name\":\"Strange
47
+ Tales (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9260\",\"name\":\"Strange
48
+ Tales (2010 - Present)\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57124\",\"name\":\"Interior
49
+ #57124\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/71667\",\"name\":\"Interior
50
+ #71667\",\"type\":\"interiorStory\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/9181/nicholas_bertozzi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":4225,\"firstName\":\"Jimmy\",\"middleName\":\"\",\"lastName\":\"Betancourt\",\"suffix\":\"\",\"fullName\":\"Jimmy
51
+ Betancourt\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4225\",\"comics\":{\"available\":25,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4225/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12613\",\"name\":\"Black
52
+ Panther (1998) #44\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7381\",\"name\":\"Cable
53
+ (1993) #105\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1043\",\"name\":\"Cable
54
+ Vol. II: The End (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15635\",\"name\":\"Daredevil
55
+ (1998) #33\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/957\",\"name\":\"Daredevil
56
+ Vol. V: Out (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20037\",\"name\":\"Ghost
57
+ Rider (2001) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1062\",\"name\":\"Ghost
58
+ Rider: The Hammer Lane (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/19940\",\"name\":\"Iron
59
+ Man (1998) #64\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5451\",\"name\":\"New
60
+ X-Men (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14945\",\"name\":\"New
61
+ X-Men (2001) #126\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14951\",\"name\":\"New
62
+ X-Men (2001) #132\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14956\",\"name\":\"New
63
+ X-Men (2001) #137\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2592\",\"name\":\"New
64
+ X-Men Vol. 2: Imperial (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/994\",\"name\":\"New
65
+ X-Men Vol. III: New Worlds (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10915\",\"name\":\"Spider-Man's
66
+ Tangled Web (2001) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10917\",\"name\":\"Spider-Man's
67
+ Tangled Web (2001) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1007\",\"name\":\"Spider-Man's
68
+ Tangled Web Vol. III (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1113\",\"name\":\"Thor
69
+ Vol. 3: Gods on Earth (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15708\",\"name\":\"Ultimate
70
+ X-Men (2000) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16226\",\"name\":\"Ultimate
71
+ X-Men Ultimate Collection Book 2 (Trade Paperback)\"}],\"returned\":20},\"series\":{\"available\":21,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4225/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2115\",\"name\":\"Black
72
+ Panther (1998 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1995\",\"name\":\"Cable
73
+ (1993 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/103\",\"name\":\"Cable
74
+ Vol. II: The End (2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/449\",\"name\":\"Daredevil
75
+ (1998 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/22\",\"name\":\"Daredevil
76
+ Vol. V: Out (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3733\",\"name\":\"Ghost
77
+ Rider (2001 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/122\",\"name\":\"Ghost
78
+ Rider: The Hammer Lane (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2572\",\"name\":\"Iron
79
+ Man (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2281\",\"name\":\"New
80
+ X-Men (2001 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1807\",\"name\":\"New
81
+ X-Men (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1166\",\"name\":\"New
82
+ X-Men Vol. 2: Imperial (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/56\",\"name\":\"New
83
+ X-Men Vol. III: New Worlds (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2071\",\"name\":\"Spider-Man's
84
+ Tangled Web (2001 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/69\",\"name\":\"Spider-Man's
85
+ Tangled Web Vol. III (2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/173\",\"name\":\"Thor
86
+ Vol. 3: Gods on Earth (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/474\",\"name\":\"Ultimate
87
+ X-Men (2000 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2719\",\"name\":\"Ultimate
88
+ X-Men Ultimate Collection Book 2 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1168\",\"name\":\"Ultimate
89
+ X-Men Vol. 3: World Tour (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/82\",\"name\":\"Ultimate
90
+ X-Men Vol. III: World Tour (2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2262\",\"name\":\"Wolverine
91
+ (1988 - 2003)\"}],\"returned\":20},\"stories\":{\"available\":13,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4225/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/24182\",\"name\":\"Don't
92
+ Forget to Tip Your Waitress\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/25090\",\"name\":\"Jay
93
+ Leno & Spider-Man: One Night Only! Part Two (Don't Forget to Tip Your Waitress)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/25418\",\"name\":\"The
94
+ Last Shoot\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/25429\",\"name\":\"Heartbreaker\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28766\",\"name\":\"See
95
+ Ya Around, Frankie\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28768\",\"name\":\"Down
96
+ the Road\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/30427\",\"name\":\"Riot
97
+ at Xavier's\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/30438\",\"name\":\"Ambient
98
+ Magnetic Fields\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/30455\",\"name\":\"Interior
99
+ #30455\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31978\",\"name\":\"Jay
100
+ Leno and Spider-Man: One Night Only Part 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32084\",\"name\":\"Jay
101
+ Leno & Spider-Man: One Night Only! (Don't Forget to Tip Your Waitress) Part
102
+ Three\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/42753\",\"name\":\"Standoff
103
+ Part Two\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/42917\",\"name\":\"The
104
+ Hammer Lane Part 6: Spirit of Forgiveness\",\"type\":\"interiorStory\"}],\"returned\":13},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4225/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/4225/jimmy_betancourt?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":4676,\"firstName\":\"Bev\",\"middleName\":\"\",\"lastName\":\"Beveridge\",\"suffix\":\"\",\"fullName\":\"Bev
105
+ Beveridge\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4676\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4676/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5785\",\"name\":\"Champions
106
+ Classic Vol. 2 (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1585\",\"name\":\"Essential
107
+ Peter Parker, the Spectacular Spider-Man Vol. (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14631\",\"name\":\"Peter
108
+ Parker, the Spectacular Spider-Man (1976) #18\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4676/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1721\",\"name\":\"Champions
109
+ Classic Vol. 2 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1427\",\"name\":\"Essential
110
+ Peter Parker, the Spectacular Spider-Man Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2271\",\"name\":\"Peter
111
+ Parker, the Spectacular Spider-Man (1976 - 1998)\"}],\"returned\":3},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4676/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/29708\",\"name\":\"My
112
+ Friend, My Foe!\",\"type\":\"interiorStory\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4676/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/4676/bev_beveridge?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":2765,\"firstName\":\"Mary\",\"middleName\":\"\",\"lastName\":\"Beveridge\",\"suffix\":\"\",\"fullName\":\"Mary
113
+ Beveridge\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/2765\",\"comics\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/2765/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7604\",\"name\":\"Captain
114
+ America (1968) #223\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8737\",\"name\":\"Ghost
115
+ Rider (1973) #30\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8738\",\"name\":\"Ghost
116
+ Rider (1973) #31\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10299\",\"name\":\"Ms.
117
+ Marvel (1977) #20\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12166\",\"name\":\"What
118
+ If? (1977) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3633\",\"name\":\"What
119
+ If? Classic Volume 2 (Trade Paperback)\"}],\"returned\":6},\"series\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/2765/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1996\",\"name\":\"Captain
120
+ America (1968 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2013\",\"name\":\"Ghost
121
+ Rider (1973 - 1983)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2050\",\"name\":\"Ms.
122
+ Marvel (1977 - 1979)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2095\",\"name\":\"What
123
+ If? (1977 - 1984)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/360\",\"name\":\"What
124
+ If? Classic Volume 2 (2005)\"}],\"returned\":5},\"stories\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/2765/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17705\",\"name\":\"Call
125
+ Me Animus\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20248\",\"name\":\"The
126
+ Mage and the Monster!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20250\",\"name\":\"Demon's
127
+ Rage!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20625\",\"name\":\"The
128
+ All-New Ms. Marvel\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20874\",\"name\":\"What
129
+ if the World Knew Daredevil was Blind?\",\"type\":\"interiorStory\"}],\"returned\":5},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/2765/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/2765/mary_beveridge?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":8001,\"firstName\":\"Alex\",\"middleName\":\"\",\"lastName\":\"Bialy\",\"suffix\":\"\",\"fullName\":\"Alex
130
+ Bialy\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/8001\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/8001/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/8001/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/8001/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/8001/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/8001/alex_bialy?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":648,\"firstName\":\"Simone\",\"middleName\":\"\",\"lastName\":\"Bianchi\",\"suffix\":\"\",\"fullName\":\"Simone
131
+ Bianchi\",\"modified\":\"2013-09-10T10:10:14-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/30/4bc5a8bb82ff1\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/648\",\"comics\":{\"available\":147,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/648/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
132
+ of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38523\",\"name\":\"Age
133
+ of X: Universe (2011) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20961\",\"name\":\"Amazing
134
+ Spider-Man (1999) #555 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/28227\",\"name\":\"Amazing
135
+ Spider-Man (1999) #622\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38462\",\"name\":\"Astonishing
136
+ Spider-Man & Wolverine: Another Fine Mess (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21511\",\"name\":\"Astonishing
137
+ X-Men (2004) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21714\",\"name\":\"Astonishing
138
+ X-Men (2004) #26\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21941\",\"name\":\"Astonishing
139
+ X-Men (2004) #27\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23087\",\"name\":\"Astonishing
140
+ X-Men (2004) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23937\",\"name\":\"Astonishing
141
+ X-Men (2004) #29\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24501\",\"name\":\"Astonishing
142
+ X-Men (2004) #30\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24518\",\"name\":\"Astonishing
143
+ X-Men: Ghost Box (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22381\",\"name\":\"Astonishing
144
+ X-Men: Ghost Boxes (2008) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22572\",\"name\":\"Astonishing
145
+ X-Men: Ghost Boxes (2008) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/49555\",\"name\":\"Avengers
146
+ (2012) #24 (Bianchi Sketch Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46932\",\"name\":\"Avengers
147
+ (2012) #24 (Bianchi Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/50002\",\"name\":\"Avengers
148
+ World (2014) #2 (Bianchi Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30372\",\"name\":\"Black
149
+ Panther: The Man Without Fear (2010) #513\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38932\",\"name\":\"Black
150
+ Panther: The Man Without Fear (2010) #513 (2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30373\",\"name\":\"Black
151
+ Panther: The Man Without Fear (2010) #514\"}],\"returned\":20},\"series\":{\"available\":66,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/648/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
152
+ of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
153
+ Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13864\",\"name\":\"Astonishing
154
+ Spider-Man & Wolverine: Another Fine Mess (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
155
+ X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8916\",\"name\":\"Astonishing
156
+ X-Men: Ghost Box (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5998\",\"name\":\"Astonishing
157
+ X-Men: Ghost Boxes (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16452\",\"name\":\"Avengers
158
+ (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/18398\",\"name\":\"Avengers
159
+ World (2014 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15691\",\"name\":\"Black
160
+ Panther: The Man Without Fear (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13165\",\"name\":\"Black
161
+ Panther: The Man Without Fear - Fear Itself TPB (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16907\",\"name\":\"Cable
162
+ and X-Force (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16516\",\"name\":\"Captain
163
+ America (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6599\",\"name\":\"Dark
164
+ Avengers (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8798\",\"name\":\"Dark
165
+ Avengers/Uncanny X-Men: Exodus (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8799\",\"name\":\"Dark
166
+ Avengers/Uncanny X-Men: Utopia (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7687\",\"name\":\"Dark
167
+ Reign: Fantastic Four (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7000\",\"name\":\"Dark
168
+ Reign: Fantastic Four (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7707\",\"name\":\"Dark
169
+ Wolverine (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9424\",\"name\":\"Dark
170
+ X-Men (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9051\",\"name\":\"Dark
171
+ X-Men (2009)\"}],\"returned\":20},\"stories\":{\"available\":232,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/648/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2243\",\"name\":\"1
172
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2244\",\"name\":\"1
173
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7641\",\"name\":\"2
174
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7642\",\"name\":\"2
175
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7643\",\"name\":\"3
176
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/7644\",\"name\":\"3
177
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8111\",\"name\":\"3
178
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8112\",\"name\":\"3
179
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8113\",\"name\":\"4
180
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8114\",\"name\":\"4
181
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8115\",\"name\":\"4
182
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8116\",\"name\":\"4
183
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8586\",\"name\":\"5
184
+ of 6 - Evolution / No Cover or Interior Ads! UPC on Cv4!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8587\",\"name\":\"5
185
+ of 6 - Evolution / No Cover or Interior Ads! UPC on Cv4!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8588\",\"name\":\"5
186
+ of 6 - Evolution\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8589\",\"name\":\"5
187
+ of 6 - Evolution\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32309\",\"name\":\"THE
188
+ INITIATIVE BANNER\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32526\",\"name\":\"6
189
+ of 6 - Evolution / No Cover or Interior Ads! UPC on Cv4!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32527\",\"name\":\"6
190
+ of 6 - Evolution / No Cover or Interior Ads! UPC on Cv4!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32528\",\"name\":\"6
191
+ of 6 - Evolution\",\"type\":\"cover\"}],\"returned\":20},\"events\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/648/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
192
+ of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
193
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
194
+ Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/317\",\"name\":\"Inhumanity\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"}],\"returned\":5},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/648/simone_bianchi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":4583,\"firstName\":\"Steve\",\"middleName\":\"\",\"lastName\":\"Biasi\",\"suffix\":\"\",\"fullName\":\"Steve
195
+ Biasi\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/4583\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4583/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14187\",\"name\":\"Wolverine
196
+ (1988) #65\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14188\",\"name\":\"Wolverine
197
+ (1988) #66\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14190\",\"name\":\"Wolverine
198
+ (1988) #68\"}],\"returned\":3},\"series\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4583/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2262\",\"name\":\"Wolverine
199
+ (1988 - 2003)\"}],\"returned\":1},\"stories\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4583/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28891\",\"name\":\"State
200
+ of Grace\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28893\",\"name\":\"Prophecy\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28897\",\"name\":\"Epsilon
201
+ Red\",\"type\":\"interiorStory\"}],\"returned\":3},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/4583/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/4583/steve_biasi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":12007,\"firstName\":\"Leslie\",\"middleName\":\"\",\"lastName\":\"Bibb\",\"suffix\":\"\",\"fullName\":\"Leslie
202
+ Bibb\",\"modified\":\"2013-08-30T15:18:42-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/40/5220efff2dca9\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/12007\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/12007/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/12007/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/12007/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/12007/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/12007/leslie_bibb?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":5179,\"firstName\":\"Seth\",\"middleName\":\"\",\"lastName\":\"Biederman\",\"suffix\":\"\",\"fullName\":\"Seth
203
+ Biederman\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5179\",\"comics\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5179/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23010\",\"name\":\"Astonishing
204
+ X-Men Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21635\",\"name\":\"Captain
205
+ Marvel: Secret Invasion Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22402\",\"name\":\"Elektra
206
+ by Frank Miller Omnibus (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16654\",\"name\":\"Legion
207
+ of Monsters (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21426\",\"name\":\"Marvel
208
+ Zombies 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17326\",\"name\":\"Punisher
209
+ War Journal Vol. 2: Goin' Out West Premiere (Hardcover)\"}],\"returned\":6},\"series\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5179/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6422\",\"name\":\"Astonishing
210
+ X-Men Vol. 2 (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5259\",\"name\":\"Captain
211
+ Marvel: Secret Invasion Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6023\",\"name\":\"Elektra
212
+ by Frank Miller Omnibus (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2961\",\"name\":\"Legion
213
+ of Monsters (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5064\",\"name\":\"Marvel
214
+ Zombies 2 (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3128\",\"name\":\"Punisher
215
+ War Journal Vol. 2: Goin' Out West Premiere (2007)\"}],\"returned\":6},\"stories\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5179/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33594\",\"name\":\"Legion
216
+ of Monsters: Werewolf by Night, Morbius, Man-Thing, Satana; Dead of Night
217
+ 11, Marvel Spotlight 26, Marvel Two-In-One 18, \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36318\",\"name\":\"Punisher
218
+ War Journal 5-9\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47316\",\"name\":\"Marvel
219
+ Zombies 2 1-5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47688\",\"name\":\"Captain
220
+ Marvel 1-5, Civil War: The Return\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49319\",\"name\":\"Elektra:
221
+ Assassin 1-8, Elektra Lives Again, Bizarre Adventures 28, What If? 35\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/51064\",\"name\":\"Astonishing
222
+ X-Men 13-24, Giant-Size Astonishing X-Men 1\",\"type\":\"interiorStory\"}],\"returned\":6},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5179/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
223
+ Invasion\"}],\"returned\":2},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/5179/seth_biederman?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":5486,\"firstName\":\"Jessica\",\"middleName\":\"\",\"lastName\":\"Biel\",\"suffix\":\"\",\"fullName\":\"Jessica
224
+ Biel\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5486\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5486/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5486/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5486/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5486/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/5486/jessica_biel?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":9560,\"firstName\":\"Tom\",\"middleName\":\"\",\"lastName\":\"Bierbaum\",\"suffix\":\"\",\"fullName\":\"Tom
225
+ Bierbaum\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9560\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9560/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9560/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9560/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9560/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/9560/tom_bierbaum?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":10265,\"firstName\":\"Michael\",\"middleName\":\"\",\"lastName\":\"Bierek\",\"suffix\":\"\",\"fullName\":\"Michael
226
+ Bierek\",\"modified\":\"2013-01-28T16:39:28-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/70/4bb3cea7e696a\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10265\",\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10265/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/25439\",\"name\":\"Incredible
227
+ Hercules (2008) #139\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10265/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3762\",\"name\":\"Incredible
228
+ Hercules (2008 - 2010)\"}],\"returned\":1},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10265/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/56118\",\"name\":\"Cover
229
+ #56118\",\"type\":\"cover\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10265/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/10265/michael_bierek?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":11922,\"firstName\":\"Yves\",\"middleName\":\"\",\"lastName\":\"Bigerel\",\"suffix\":\"\",\"fullName\":\"Yves
230
+ Bigerel\",\"modified\":\"2012-09-25T18:23:34-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11922\",\"comics\":{\"available\":12,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11922/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/43556\",\"name\":\"Avengers
231
+ VS X-Men (2012) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47162\",\"name\":\"Guardians
232
+ of the Galaxy Infinite Comic (2013) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47163\",\"name\":\"Guardians
233
+ of the Galaxy Infinite Comic (2013) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47164\",\"name\":\"Guardians
234
+ of the Galaxy Infinite Comic (2013) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47165\",\"name\":\"Guardians
235
+ of the Galaxy Infinite Comic (2013) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/46140\",\"name\":\"GUARDIANS
236
+ OF THE GALAXY VOL. 1: COSMIC AVENGERS PREMIERE HC (MARVEL NOW, WITH DIGITAL
237
+ CODE) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40746\",\"name\":\"New
238
+ Avengers (2010) #34\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/44528\",\"name\":\"Ultimate
239
+ Spider-Man Infinite (2012) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47254\",\"name\":\"Wolverine:
240
+ Japan's Most Wanted Infinite Comic (2013) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47255\",\"name\":\"Wolverine:
241
+ Japan's Most Wanted Infinite Comic (2013) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47256\",\"name\":\"Wolverine:
242
+ Japan's Most Wanted Infinite Comic (2013) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/47257\",\"name\":\"Wolverine:
243
+ Japan's Most Wanted Infinite Comic (2013) #4\"}],\"returned\":12},\"series\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11922/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15305\",\"name\":\"Avengers
244
+ VS X-Men (2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17755\",\"name\":\"Guardians
245
+ of the Galaxy Infinite Comic (2013 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17394\",\"name\":\"GUARDIANS
246
+ OF THE GALAXY VOL. 1: COSMIC AVENGERS PREMIERE HC (MARVEL NOW, WITH DIGITAL
247
+ CODE) (2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9922\",\"name\":\"New
248
+ Avengers (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16804\",\"name\":\"Ultimate
249
+ Spider-Man Infinite (2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17820\",\"name\":\"Wolverine:
250
+ Japan's Most Wanted Infinite Comic (2013 - Present)\"}],\"returned\":6},\"stories\":{\"available\":12,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11922/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/92317\",\"name\":\"Interior
251
+ #92317\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/103829\",\"name\":\"story
252
+ from Guardians of the Galaxy (2013)\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/105904\",\"name\":\"story
253
+ from Guardians of the Galaxy Infinite Digital Comic (2013) #1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/105906\",\"name\":\"story
254
+ from Guardians of the Galaxy Infinite Digital Comic (2013) #2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/105908\",\"name\":\"story
255
+ from Guardians of the Galaxy Infinite Digital Comic (2013) #3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/105910\",\"name\":\"story
256
+ from Guardians of the Galaxy Infinite Digital Comic (2013) #4\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/106821\",\"name\":\"story
257
+ from Wolverine Infinite Digital Comic (2013) #1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/106823\",\"name\":\"story
258
+ from Wolverine Infinite Digital Comic (2013) #2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/106825\",\"name\":\"story
259
+ from Wolverine Infinite Digital Comic (2013) #3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/106827\",\"name\":\"story
260
+ from Wolverine Infinite Digital Comic (2013) #4\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/113652\",\"name\":\"Avengers
261
+ Vs X-Men #10 Infinite\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/113653\",\"name\":\"Ultimate
262
+ Spider-Man Infinite\",\"type\":\"interiorStory\"}],\"returned\":12},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11922/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/11922/yves_bigerel?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":904,\"firstName\":\"Chris\",\"middleName\":\"\",\"lastName\":\"Biggs\",\"suffix\":\"\",\"fullName\":\"Chris
263
+ Biggs\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/904\",\"comics\":{\"available\":32,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/904/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3441\",\"name\":\"All-New
264
+ Official Handbook of the Marvel Universe a to Z (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3566\",\"name\":\"All-New
265
+ Official Handbook of the Marvel Universe a to Z (2006) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3970\",\"name\":\"All-New
266
+ Official Handbook of the Marvel Universe a to Z (2006) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4206\",\"name\":\"All-New
267
+ Official Handbook of the Marvel Universe a to Z (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4298\",\"name\":\"All-New
268
+ Official Handbook of the Marvel Universe a to Z (2006) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4773\",\"name\":\"All-New
269
+ Official Handbook of the Marvel Universe a to Z (2006) #8\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20741\",\"name\":\"All-New
270
+ Official Handbook of the Marvel Universe a to Z Vol. 1 Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21080\",\"name\":\"All-New
271
+ Official Handbook of the Marvel Universe a to Z Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15977\",\"name\":\"All-New
272
+ Official Handbook of the Marvel Universe a to Z: Update (2007) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29271\",\"name\":\"Avengers
273
+ Assemble Handbook (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29273\",\"name\":\"Deadpool
274
+ Corps: Rank and Foul (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17298\",\"name\":\"Marvel
275
+ Legacy: The 1960s-1990s Handbook (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4201\",\"name\":\"Marvel
276
+ Legacy: The 1970s (2006) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/25876\",\"name\":\"Marvel
277
+ Pets Handbook (2009) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2191\",\"name\":\"Official
278
+ Handbook of the Marvel Universe (2004) #15 (AVENGERS)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2441\",\"name\":\"Official
279
+ Handbook of the Marvel Universe (2004) #16 (ALTERNATE UNIVERSES)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2442\",\"name\":\"Official
280
+ Handbook of the Marvel Universe (2004) #17 (HORROR)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26104\",\"name\":\"Official
281
+ Handbook of the Marvel Universe a to Z Vol. 11 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/26106\",\"name\":\"Official
282
+ Handbook of the Marvel Universe a to Z Vol. 11 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/28818\",\"name\":\"Official
283
+ Handbook of the Marvel Universe a to Z Vol. 12 (Hardcover)\"}],\"returned\":20},\"series\":{\"available\":23,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/904/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1023\",\"name\":\"All-New
284
+ Official Handbook of the Marvel Universe a to Z (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3884\",\"name\":\"All-New
285
+ Official Handbook of the Marvel Universe a to Z Vol. 1 Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/4600\",\"name\":\"All-New
286
+ Official Handbook of the Marvel Universe a to Z Vol. 2 (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1147\",\"name\":\"All-New
287
+ Official Handbook of the Marvel Universe a to Z: Update (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9783\",\"name\":\"Avengers
288
+ Assemble Handbook (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9353\",\"name\":\"Deadpool
289
+ Corps: Rank and Foul (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3092\",\"name\":\"Marvel
290
+ Legacy: The 1960s-1990s Handbook (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1019\",\"name\":\"Marvel
291
+ Legacy: The 1970s (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8081\",\"name\":\"Marvel
292
+ Pets Handbook (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/787\",\"name\":\"Official
293
+ Handbook of the Marvel Universe (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8171\",\"name\":\"Official
294
+ Handbook of the Marvel Universe a to Z Vol. 11 (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9217\",\"name\":\"Official
295
+ Handbook of the Marvel Universe a to Z Vol. 12 (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8850\",\"name\":\"Official
296
+ Handbook of the Marvel Universe a to Z Vol. 13 (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8851\",\"name\":\"Official
297
+ Handbook of the Marvel Universe a to Z Vol. 14 (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5092\",\"name\":\"Official
298
+ Handbook of the Marvel Universe a to Z Vol. 3 Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5411\",\"name\":\"Official
299
+ Handbook of the Marvel Universe a to Z Vol. 4 Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6047\",\"name\":\"Official
300
+ Handbook of the Marvel Universe a to Z Vol. 5 Premiere (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6447\",\"name\":\"Official
301
+ Handbook of the Marvel Universe a to Z Vol. 6 Premiere (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7026\",\"name\":\"Official
302
+ Handbook of the Marvel Universe a to Z Vol. 7 Premiere (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/846\",\"name\":\"Official
303
+ Handbook of the Ultimate Marvel Universe 2005 (2005)\"}],\"returned\":20},\"stories\":{\"available\":34,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/904/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4417\",\"name\":\"Interior
304
+ #4417\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4502\",\"name\":\"1
305
+ of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4617\",\"name\":\"1
306
+ of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4619\",\"name\":\"1
307
+ of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5701\",\"name\":\"Interior
308
+ #5701\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5713\",\"name\":\"Interior
309
+ #5713\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5715\",\"name\":\"Interior
310
+ #5715\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5717\",\"name\":\"Interior
311
+ #5717\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5721\",\"name\":\"Interior
312
+ #5721\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5723\",\"name\":\"Interior
313
+ #5723\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5727\",\"name\":\"Interior
314
+ #5727\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32629\",\"name\":\"Interior
315
+ #32629\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36251\",\"name\":\"Marvel
316
+ Legacy: The 1960s, The 1970s, The 1980s, The 1990s Handbooks\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36466\",\"name\":\"Interior
317
+ #36466\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44493\",\"name\":\"Interior
318
+ #44493\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/46185\",\"name\":\"Interior
319
+ #46185\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47372\",\"name\":\"Interior
320
+ #47372\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47976\",\"name\":\"Interior
321
+ #47976\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/48142\",\"name\":\"Interior
322
+ #48142\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49367\",\"name\":\"Interior
323
+ #49367\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/904/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
324
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
325
+ CompleX\"}],\"returned\":2},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/904/chris_biggs?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":11232,\"firstName\":\"CHRISTINA\",\"middleName\":\"L.\",\"lastName\":\"BIGGS\",\"suffix\":\"\",\"fullName\":\"CHRISTINA
326
+ L. BIGGS\",\"modified\":\"2013-01-28T16:40:30-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/11232\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11232/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11232/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11232/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/70382\",\"name\":\"Interior
327
+ #70382\",\"type\":\"interiorStory\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/11232/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/11232/christina_l_biggs?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":5826,\"firstName\":\"Al\",\"middleName\":\"\",\"lastName\":\"Bigley\",\"suffix\":\"\",\"fullName\":\"Al
328
+ Bigley\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/5826\",\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5826/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17845\",\"name\":\"Avengers
329
+ West Coast Annual (1989) #7\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5826/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3624\",\"name\":\"Avengers
330
+ West Coast Annual (1989 - 1993)\"}],\"returned\":1},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5826/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37923\",\"name\":\"A
331
+ Study In Scarlet\",\"type\":\"\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/5826/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/5826/al_bigley?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":6043,\"firstName\":\"Armando\",\"middleName\":\"\",\"lastName\":\"Bil\",\"suffix\":\"\",\"fullName\":\"Armando
332
+ Bil\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/6043\",\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/6043/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18316\",\"name\":\"What
333
+ If? (1989) #16\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/6043/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3648\",\"name\":\"What
334
+ If? (1989 - 1998)\"}],\"returned\":1},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/6043/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38983\",\"name\":\"What
335
+ if Wolverine REALLY met Conan the Barbarian?!\",\"type\":\"\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/6043/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/6043/armando_bil?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":10063,\"firstName\":\"Jake\",\"middleName\":\"\",\"lastName\":\"Bilbao\",\"suffix\":\"\",\"fullName\":\"Jake
336
+ Bilbao\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/00/4baa6d433c448\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/10063\",\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10063/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/32767\",\"name\":\"Wolverine
337
+ (2010) #900\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/33494\",\"name\":\"Wolverine:
338
+ Worst There Is (2010) #1\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10063/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9962\",\"name\":\"Wolverine
339
+ (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9831\",\"name\":\"Wolverine:
340
+ Worst There Is (2010)\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10063/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/73873\",\"name\":\"Interior
341
+ #73873\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/75306\",\"name\":\"\",\"type\":\"\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/10063/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/10063/jake_bilbao?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":3336,\"firstName\":\"Dave\",\"middleName\":\"\",\"lastName\":\"Billman\",\"suffix\":\"\",\"fullName\":\"Dave
342
+ Billman\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/40/image_not_available\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/3336\",\"comics\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/3336/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12151\",\"name\":\"What
343
+ If? (1977) #37\"}],\"returned\":1},\"series\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/3336/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2095\",\"name\":\"What
344
+ If? (1977 - 1984)\"}],\"returned\":1},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/3336/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20828\",\"name\":\"What
345
+ if the Thing Continued to Mutate?\",\"type\":\"interiorStory\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/3336/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/3336/dave_billman?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
346
+ http_version:
347
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
348
+ - request:
349
+ method: get
350
+ uri: http://gateway.marvel.com/v1/public/creators/9181?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
351
+ body:
352
+ encoding: US-ASCII
353
+ string: ''
354
+ headers:
355
+ Accept:
356
+ - application/json
357
+ response:
358
+ status:
359
+ code: 200
360
+ message: OK
361
+ headers:
362
+ Etag:
363
+ - b3764a64c3f2091006549da7435d34583c34cc6a
364
+ Content-Type:
365
+ - application/json
366
+ Content-Length:
367
+ - '1752'
368
+ Date:
369
+ - Mon, 10 Feb 2014 16:18:07 GMT
370
+ Connection:
371
+ - keep-alive
372
+ body:
373
+ encoding: ASCII-8BIT
374
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"b3764a64c3f2091006549da7435d34583c34cc6a\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":9181,\"firstName\":\"Nicholas\",\"middleName\":\"\",\"lastName\":\"Bertozzi\",\"suffix\":\"\",\"fullName\":\"Nicholas
375
+ Bertozzi\",\"modified\":\"2007-01-02T00:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/1/20/4bb3bba51fc0b\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/9181\",\"comics\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31489\",\"name\":\"Strange
376
+ Tales (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/25919\",\"name\":\"Strange
377
+ Tales (2009) #1\"}],\"returned\":2},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8098\",\"name\":\"Strange
378
+ Tales (2009 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9260\",\"name\":\"Strange
379
+ Tales (2010 - Present)\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57124\",\"name\":\"Interior
380
+ #57124\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/71667\",\"name\":\"Interior
381
+ #71667\",\"type\":\"interiorStory\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/creators/9181/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/creators/9181/nicholas_bertozzi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
382
+ http_version:
383
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
384
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,32 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/creators/186/comics?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
+ - 79ef3436d0dc139b17693635b99776556e29f495
19
+ Content-Type:
20
+ - application/json
21
+ Content-Length:
22
+ - '140'
23
+ Date:
24
+ - Mon, 10 Feb 2014 16:44:49 GMT
25
+ Connection:
26
+ - keep-alive
27
+ body:
28
+ encoding: ASCII-8BIT
29
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"79ef3436d0dc139b17693635b99776556e29f495\",\"data\":{\"offset\":0,\"limit\":20,\"total\":0,\"count\":0,\"results\":[]}}"
30
+ http_version:
31
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
32
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,31 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/character/4321/creators?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ response:
13
+ status:
14
+ code: 404
15
+ message: Not Found
16
+ headers:
17
+ Content-Type:
18
+ - application/json
19
+ Content-Length:
20
+ - '181'
21
+ Date:
22
+ - Tue, 11 Feb 2014 17:33:22 GMT
23
+ Connection:
24
+ - keep-alive
25
+ body:
26
+ encoding: ASCII-8BIT
27
+ string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/character/4321/creators?ts=1391894400&apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef
28
+ does not exist\"}"
29
+ http_version:
30
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
31
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,31 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/character/4321/creators?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ response:
13
+ status:
14
+ code: 404
15
+ message: Not Found
16
+ headers:
17
+ Content-Type:
18
+ - application/json
19
+ Content-Length:
20
+ - '181'
21
+ Date:
22
+ - Tue, 11 Feb 2014 17:38:05 GMT
23
+ Connection:
24
+ - keep-alive
25
+ body:
26
+ encoding: ASCII-8BIT
27
+ string: "{\"code\":\"ResourceNotFound\",\"message\":\"/v1/public/character/4321/creators?ts=1391894400&apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef
28
+ does not exist\"}"
29
+ http_version:
30
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
31
+ recorded_with: VCR 2.8.0