ultron 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -3
  3. data/.travis.yml +8 -0
  4. data/lib/ultron.rb +1 -0
  5. data/lib/ultron/models/entities.rb +11 -8
  6. data/lib/ultron/url.rb +18 -0
  7. data/lib/ultron/version.rb +1 -1
  8. data/spec/cassettes/Ultron_Characters/should_find_a_character.yml +8 -6
  9. data/spec/cassettes/Ultron_Characters/should_find_a_list_of_comics_featuring_the_character.yml +414 -1359
  10. data/spec/cassettes/Ultron_Comics/should_find_a_comic.yml +3 -1
  11. data/spec/cassettes/Ultron_Creators/should_find_a_list_of_series_by_the_creator.yml +130 -126
  12. data/spec/cassettes/Ultron_Events/should_find_a_list_of_stories_for_the_event.yml +6 -2
  13. data/spec/cassettes/Ultron_Series/should_give_a_default_set_of_series.yml +1103 -1101
  14. data/spec/cassettes/equality/should_be_equal_if_its_URL_minus_the_auth_bit_is_equal.yml +5993 -0
  15. data/spec/cassettes/exceptions/should_throw_a_404_wrapped_in_a_Marvel_exception_on_a_404.yml +2 -2
  16. data/spec/cassettes/exceptions/should_throw_a_No_Idea_What_This_Param_Is_exception.yml +2 -2
  17. data/spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_nonsensical.yml +2 -2
  18. data/spec/cassettes/exceptions/should_throw_an_Ultron_exception_when_we_do_something_dumb.yml +2 -2
  19. data/spec/cassettes/sample/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml +253 -253
  20. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic.yml +347 -360
  21. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml +10 -10
  22. data/spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml +253 -253
  23. data/spec/cassettes/searching/should_accept_with_as_a_synonym_for_where.yml +501 -499
  24. data/spec/cassettes/searching/should_let_us_get_a_comic.yml +3 -1
  25. data/spec/cassettes/searching/should_let_us_get_comics_by_a_creator.yml +263 -289
  26. data/spec/cassettes/searching/should_let_us_get_comics_by_a_creator_with_params_.yml +3 -1
  27. data/spec/cassettes/searching/should_let_us_get_more_than_the_default_20_results.yml +1814 -1806
  28. data/spec/cassettes/searching/should_let_us_search_with_multiple_parameters.yml +367 -365
  29. data/spec/cassettes/searching/should_let_us_search_with_parameters.yml +616 -614
  30. data/spec/ultron/equality_spec.rb +16 -0
  31. data/spec/ultron/{characters_spec.rb → models/characters_spec.rb} +0 -0
  32. data/spec/ultron/{comics_spec.rb → models/comics_spec.rb} +0 -0
  33. data/spec/ultron/{creators_spec.rb → models/creators_spec.rb} +0 -0
  34. data/spec/ultron/{ultron_spec.rb → models/entities_spec.rb} +0 -0
  35. data/spec/ultron/{events_spec.rb → models/events_spec.rb} +0 -0
  36. data/spec/ultron/{series_spec.rb → models/series_spec.rb} +0 -0
  37. data/spec/ultron/{sample_spec.rb → searches/sample_spec.rb} +1 -1
  38. data/spec/ultron/{searches_spec.rb → searches/searches_spec.rb} +1 -1
  39. data/spec/ultron/url_spec.rb +19 -0
  40. data/ultron.gemspec +1 -1
  41. metadata +25 -62
  42. data/spec/cassettes/Ultron_Characters/find_a_character.yml +0 -99
  43. data/spec/cassettes/Ultron_Comics/find_a_comic.yml +0 -46
  44. data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +0 -559
  45. data/spec/cassettes/Ultron_Events/should_find_an_event.yml +0 -123
  46. data/spec/cassettes/Ultron_Series/and_again_here.yml +0 -244
  47. data/spec/cassettes/Ultron_Series/should_let_us_reuse_the_connection_safely.yml +0 -916
  48. data/spec/cassettes/Ultron_Series/should_let_us_search_with_parameters.yml +0 -244
  49. data/spec/cassettes/exceptions/should_throw_a_Marvel_exception_on_an_API_error.yml +0 -32
  50. data/spec/cassettes/exceptions/should_throw_a_No_Results_exception.yml +0 -34
  51. data/spec/cassettes/exceptions/should_throw_a_Not_Found_exception.yml +0 -32
  52. data/spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_non-sensical.yml +0 -33
  53. data/spec/cassettes/exceptions/should_throw_an_Ultron_exception_for_something_internal_to_Ultron.yml +0 -34
  54. data/spec/cassettes/searching/should_handle_an_empty_response_gracefully.yml +0 -34
  55. data/spec/cassettes/searching/should_indicate_Not_Found.yml +0 -61
  56. data/spec/cassettes/searching/should_throw_a_No_Results_exception.yml +0 -34
  57. data/spec/cassettes/searching/should_throw_a_Not_Found_exception.yml +0 -32
  58. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml +0 -1673
  59. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_character.yml +0 -585
  60. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic.yml +0 -3035
  61. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml +0 -312
  62. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_member_of_the_result_set.yml +0 -1673
  63. data/spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml +0 -1673
@@ -0,0 +1,16 @@
1
+ require 'spec_helper'
2
+
3
+ module Ultron
4
+ describe 'equality' do
5
+ it 'should be equal if its URL (minus the auth bit) is equal', :vcr do
6
+ pending 'Because this throws Travis into a flat spin'
7
+ Timecop.freeze '1970-01-01'
8
+ a = Comics.by_character 1009472 # Nightcrawler
9
+
10
+ Timecop.freeze '1974-06-15'
11
+ b = Comics.by_character 1009472
12
+
13
+ a.should == b
14
+ end
15
+ end
16
+ end
@@ -26,7 +26,7 @@ module Ultron
26
26
 
27
27
  it 'should give us a random comic for a more complex search', :vcr do
28
28
  set = Comics.by_creator_and_with 214, dateRange: '1980-01-01,1989-12-31'
29
- set.stub(:random_offset).and_return(99)
29
+ set.stub(:random_offset).and_return(100)
30
30
  set.sample.title.should == 'Dazzler (1981) #19'
31
31
  end
32
32
  end
@@ -28,7 +28,7 @@ module Ultron
28
28
 
29
29
  it 'should accept with as a synonym for where', :vcr do
30
30
  comics = Comics.with sharedAppearances: '1009685,1009351' # Ultron and Hulk
31
- comics.first.title.should == 'Avengers: First to Last (Hardcover)'
31
+ comics.first.title.should == 'Avengers: First to Last Premiere (Hardcover)'
32
32
  end
33
33
 
34
34
  it 'should let us get comics by a creator *with params*', :vcr do
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ module Ultron
4
+ describe URL do
5
+ context 'how should two URLs be equal?' do
6
+ it 'should be equal regardless of the auth part', :vcr do
7
+ ts = '2014-02-16T19:48:00+00:00'
8
+ Timecop.freeze ts
9
+ Ultron.stub(:auth).and_return(Date.parse(ts).strftime '%s')
10
+ first_url = URL.new '/path/parts', 'query=string&'
11
+ ts = '2014-02-17T19:48:00+00:00'
12
+ Timecop.freeze ts
13
+ second_url = URL.new '/path/parts', 'query=string&'
14
+
15
+ first_url.should == second_url
16
+ end
17
+ end
18
+ end
19
+ end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['github@orgraphone.org']
11
11
  spec.summary = %q{Ruby bindings for the Marvel COmics API}
12
12
  spec.description = %q{MADE FROM ADAMANTIUM}
13
- spec.homepage = ''
13
+ spec.homepage = 'http://pikesley.github.io/ultron/'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultron
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - pikesley
@@ -278,65 +278,47 @@ files:
278
278
  - lib/ultron/models/events.rb
279
279
  - lib/ultron/models/series.rb
280
280
  - lib/ultron/models/stories.rb
281
+ - lib/ultron/url.rb
281
282
  - lib/ultron/version.rb
282
- - spec/cassettes/Ultron_Characters/find_a_character.yml
283
283
  - spec/cassettes/Ultron_Characters/should_find_a_character.yml
284
284
  - spec/cassettes/Ultron_Characters/should_find_a_list_of_comics_featuring_the_character.yml
285
- - spec/cassettes/Ultron_Comics/find_a_comic.yml
286
285
  - spec/cassettes/Ultron_Comics/should_find_a_comic.yml
287
- - spec/cassettes/Ultron_Connection/should_get_a_200.yml
288
286
  - spec/cassettes/Ultron_Creators/should_find_a_list_of_series_by_the_creator.yml
289
287
  - spec/cassettes/Ultron_Events/should_find_a_list_of_stories_for_the_event.yml
290
- - spec/cassettes/Ultron_Events/should_find_an_event.yml
291
- - spec/cassettes/Ultron_Series/and_again_here.yml
292
288
  - spec/cassettes/Ultron_Series/should_give_a_default_set_of_series.yml
293
- - spec/cassettes/Ultron_Series/should_let_us_reuse_the_connection_safely.yml
294
- - spec/cassettes/Ultron_Series/should_let_us_search_with_parameters.yml
289
+ - spec/cassettes/equality/should_be_equal_if_its_URL_minus_the_auth_bit_is_equal.yml
295
290
  - spec/cassettes/exceptions/should_throw_a_404_wrapped_in_a_Marvel_exception_on_a_404.yml
296
- - spec/cassettes/exceptions/should_throw_a_Marvel_exception_on_an_API_error.yml
297
291
  - spec/cassettes/exceptions/should_throw_a_No_Idea_What_This_Param_Is_exception.yml
298
- - spec/cassettes/exceptions/should_throw_a_No_Results_exception.yml
299
- - spec/cassettes/exceptions/should_throw_a_Not_Found_exception.yml
300
- - spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_non-sensical.yml
301
292
  - spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_nonsensical.yml
302
- - spec/cassettes/exceptions/should_throw_an_Ultron_exception_for_something_internal_to_Ultron.yml
303
293
  - spec/cassettes/exceptions/should_throw_an_Ultron_exception_when_we_do_something_dumb.yml
304
294
  - spec/cassettes/sample/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml
305
295
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic.yml
306
296
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml
307
297
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml
308
298
  - spec/cassettes/searching/should_accept_with_as_a_synonym_for_where.yml
309
- - spec/cassettes/searching/should_handle_an_empty_response_gracefully.yml
310
- - spec/cassettes/searching/should_indicate_Not_Found.yml
311
299
  - spec/cassettes/searching/should_let_us_get_a_comic.yml
312
300
  - spec/cassettes/searching/should_let_us_get_comics_by_a_creator.yml
313
301
  - spec/cassettes/searching/should_let_us_get_comics_by_a_creator_with_params_.yml
314
302
  - spec/cassettes/searching/should_let_us_get_more_than_the_default_20_results.yml
315
303
  - spec/cassettes/searching/should_let_us_search_with_multiple_parameters.yml
316
304
  - spec/cassettes/searching/should_let_us_search_with_parameters.yml
317
- - spec/cassettes/searching/should_throw_a_No_Results_exception.yml
318
- - spec/cassettes/searching/should_throw_a_Not_Found_exception.yml
319
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml
320
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_character.yml
321
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic.yml
322
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml
323
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_member_of_the_result_set.yml
324
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml
325
305
  - spec/spec_helper.rb
326
306
  - spec/support/vcr_setup.rb
327
307
  - spec/ultron/auth_spec.rb
328
- - spec/ultron/characters_spec.rb
329
- - spec/ultron/comics_spec.rb
330
308
  - spec/ultron/config_spec.rb
331
- - spec/ultron/creators_spec.rb
332
- - spec/ultron/events_spec.rb
309
+ - spec/ultron/equality_spec.rb
333
310
  - spec/ultron/exceptions_spec.rb
334
- - spec/ultron/sample_spec.rb
335
- - spec/ultron/searches_spec.rb
336
- - spec/ultron/series_spec.rb
337
- - spec/ultron/ultron_spec.rb
311
+ - spec/ultron/models/characters_spec.rb
312
+ - spec/ultron/models/comics_spec.rb
313
+ - spec/ultron/models/creators_spec.rb
314
+ - spec/ultron/models/entities_spec.rb
315
+ - spec/ultron/models/events_spec.rb
316
+ - spec/ultron/models/series_spec.rb
317
+ - spec/ultron/searches/sample_spec.rb
318
+ - spec/ultron/searches/searches_spec.rb
319
+ - spec/ultron/url_spec.rb
338
320
  - ultron.gemspec
339
- homepage: ''
321
+ homepage: http://pikesley.github.io/ultron/
340
322
  licenses:
341
323
  - MIT
342
324
  metadata: {}
@@ -361,59 +343,40 @@ signing_key:
361
343
  specification_version: 4
362
344
  summary: Ruby bindings for the Marvel COmics API
363
345
  test_files:
364
- - spec/cassettes/Ultron_Characters/find_a_character.yml
365
346
  - spec/cassettes/Ultron_Characters/should_find_a_character.yml
366
347
  - spec/cassettes/Ultron_Characters/should_find_a_list_of_comics_featuring_the_character.yml
367
- - spec/cassettes/Ultron_Comics/find_a_comic.yml
368
348
  - spec/cassettes/Ultron_Comics/should_find_a_comic.yml
369
- - spec/cassettes/Ultron_Connection/should_get_a_200.yml
370
349
  - spec/cassettes/Ultron_Creators/should_find_a_list_of_series_by_the_creator.yml
371
350
  - spec/cassettes/Ultron_Events/should_find_a_list_of_stories_for_the_event.yml
372
- - spec/cassettes/Ultron_Events/should_find_an_event.yml
373
- - spec/cassettes/Ultron_Series/and_again_here.yml
374
351
  - spec/cassettes/Ultron_Series/should_give_a_default_set_of_series.yml
375
- - spec/cassettes/Ultron_Series/should_let_us_reuse_the_connection_safely.yml
376
- - spec/cassettes/Ultron_Series/should_let_us_search_with_parameters.yml
352
+ - spec/cassettes/equality/should_be_equal_if_its_URL_minus_the_auth_bit_is_equal.yml
377
353
  - spec/cassettes/exceptions/should_throw_a_404_wrapped_in_a_Marvel_exception_on_a_404.yml
378
- - spec/cassettes/exceptions/should_throw_a_Marvel_exception_on_an_API_error.yml
379
354
  - spec/cassettes/exceptions/should_throw_a_No_Idea_What_This_Param_Is_exception.yml
380
- - spec/cassettes/exceptions/should_throw_a_No_Results_exception.yml
381
- - spec/cassettes/exceptions/should_throw_a_Not_Found_exception.yml
382
- - spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_non-sensical.yml
383
355
  - spec/cassettes/exceptions/should_throw_a_Resource_Not_Found_exception_when_we_search_for_something_nonsensical.yml
384
- - spec/cassettes/exceptions/should_throw_an_Ultron_exception_for_something_internal_to_Ultron.yml
385
356
  - spec/cassettes/exceptions/should_throw_an_Ultron_exception_when_we_do_something_dumb.yml
386
357
  - spec/cassettes/sample/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml
387
358
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic.yml
388
359
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml
389
360
  - spec/cassettes/sample/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml
390
361
  - spec/cassettes/searching/should_accept_with_as_a_synonym_for_where.yml
391
- - spec/cassettes/searching/should_handle_an_empty_response_gracefully.yml
392
- - spec/cassettes/searching/should_indicate_Not_Found.yml
393
362
  - spec/cassettes/searching/should_let_us_get_a_comic.yml
394
363
  - spec/cassettes/searching/should_let_us_get_comics_by_a_creator.yml
395
364
  - spec/cassettes/searching/should_let_us_get_comics_by_a_creator_with_params_.yml
396
365
  - spec/cassettes/searching/should_let_us_get_more_than_the_default_20_results.yml
397
366
  - spec/cassettes/searching/should_let_us_search_with_multiple_parameters.yml
398
367
  - spec/cassettes/searching/should_let_us_search_with_parameters.yml
399
- - spec/cassettes/searching/should_throw_a_No_Results_exception.yml
400
- - spec/cassettes/searching/should_throw_a_Not_Found_exception.yml
401
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_get_a_count_of_items_for_a_lookup.yml
402
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_character.yml
403
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic.yml
404
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_comic_for_a_more_complex_search.yml
405
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_member_of_the_result_set.yml
406
- - spec/cassettes/shuffle/let_us_pick_a_random_item/should_give_us_a_random_offset_into_the_result_set.yml
407
368
  - spec/spec_helper.rb
408
369
  - spec/support/vcr_setup.rb
409
370
  - spec/ultron/auth_spec.rb
410
- - spec/ultron/characters_spec.rb
411
- - spec/ultron/comics_spec.rb
412
371
  - spec/ultron/config_spec.rb
413
- - spec/ultron/creators_spec.rb
414
- - spec/ultron/events_spec.rb
372
+ - spec/ultron/equality_spec.rb
415
373
  - spec/ultron/exceptions_spec.rb
416
- - spec/ultron/sample_spec.rb
417
- - spec/ultron/searches_spec.rb
418
- - spec/ultron/series_spec.rb
419
- - spec/ultron/ultron_spec.rb
374
+ - spec/ultron/models/characters_spec.rb
375
+ - spec/ultron/models/comics_spec.rb
376
+ - spec/ultron/models/creators_spec.rb
377
+ - spec/ultron/models/entities_spec.rb
378
+ - spec/ultron/models/events_spec.rb
379
+ - spec/ultron/models/series_spec.rb
380
+ - spec/ultron/searches/sample_spec.rb
381
+ - spec/ultron/searches/searches_spec.rb
382
+ - spec/ultron/url_spec.rb
@@ -1,99 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/characters/1009685?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&ts=1392317244
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
- - 32d980ed634868ceb2ac402f7f4c9d2557d2d68e
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '8720'
23
- Date:
24
- - Thu, 13 Feb 2014 19:22:20 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"32d980ed634868ceb2ac402f7f4c9d2557d2d68e\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009685,\"name\":\"Ultron\",\"description\":\"Arguably
30
- the greatest and certainly the most horrific creation of scientific genius
31
- Dr. Henry Pym, Ultron is a criminally insane rogue sentient robot dedicated
32
- to conquest and the extermination of humanity.\",\"modified\":\"2013-10-18T17:32:22-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/3/70/5261a838e93c0\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009685\",\"comics\":{\"available\":53,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009685/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29317\",\"name\":\"ACTS
33
- OF VENGEANCE CROSSOVERS OMNIBUS (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29318\",\"name\":\"ACTS
34
- OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17271\",\"name\":\"Annihilation:
35
- Conquest (2007) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17405\",\"name\":\"Annihilation:
36
- Conquest (2007) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17645\",\"name\":\"Annihilation:
37
- Conquest (2007) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20686\",\"name\":\"Annihilation:
38
- Conquest (2007) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20885\",\"name\":\"Annihilation:
39
- Conquest (2007) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21016\",\"name\":\"Annihilation:
40
- Conquest (2007) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17751\",\"name\":\"Avengers
41
- (1996) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17756\",\"name\":\"Avengers
42
- (1996) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17491\",\"name\":\"Avengers
43
- (1998) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17495\",\"name\":\"Avengers
44
- (1998) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17496\",\"name\":\"Avengers
45
- (1998) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17500\",\"name\":\"Avengers
46
- (1998) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17502\",\"name\":\"Avengers
47
- (1998) #20\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17503\",\"name\":\"Avengers
48
- (1998) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17504\",\"name\":\"Avengers
49
- (1998) #22\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7304\",\"name\":\"Avengers
50
- (1963) #54\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7305\",\"name\":\"Avengers
51
- (1963) #55\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7066\",\"name\":\"Avengers
52
- (1963) #201\"}],\"returned\":20},\"series\":{\"available\":27,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009685/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9994\",\"name\":\"ACTS
53
- OF VENGEANCE CROSSOVERS OMNIBUS (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9995\",\"name\":\"ACTS
54
- OF VENGEANCE CROSSOVERS OMNIBUS (DM Only) (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/17318\",\"name\":\"AGE
55
- OF ULTRON (2013 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3061\",\"name\":\"Annihilation:
56
- Conquest (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
57
- (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
58
- (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
59
- (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1340\",\"name\":\"Avengers
60
- Assemble (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1496\",\"name\":\"Avengers
61
- Assemble Vol. 2 (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1816\",\"name\":\"Avengers
62
- Assemble Vol. 4 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/94\",\"name\":\"Avengers
63
- Legends Vol. II: George Perez Book I (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9863\",\"name\":\"Avengers
64
- Origins: Vision (2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6476\",\"name\":\"Avengers:
65
- First to Last (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6473\",\"name\":\"Avengers:
66
- First to Last Premiere (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1992\",\"name\":\"Avengers:
67
- Ultron Imperative (2001)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2002\",\"name\":\"Daredevil
68
- (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2121\",\"name\":\"Fantastic
69
- Four (1961 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1813\",\"name\":\"Heroes
70
- Reborn: Avengers (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2572\",\"name\":\"Iron
71
- Man (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1708\",\"name\":\"Marvel
72
- Masterworks: The Avengers Vol. (2006)\"}],\"returned\":20},\"stories\":{\"available\":55,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009685/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8340\",\"name\":\"2
73
- of 6 - Ultron\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8682\",\"name\":\"3
74
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12953\",\"name\":\"Cover
75
- #12953\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12954\",\"name\":\"Good
76
- Dreams Part 2 The Menace of the Metal Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14671\",\"name\":\"The
77
- Evil Reborn\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14674\",\"name\":\"This
78
- Evil Undying\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15169\",\"name\":\"...And
79
- Deliver Us from - - the Masters of Evil!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15172\",\"name\":\"Mayhem
80
- Over Manhattan\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16111\",\"name\":\"Cover
81
- #16111\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16113\",\"name\":\"Hollow
82
- Victory\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21604\",\"name\":\"Secret
83
- Wars (1984) #6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/25386\",\"name\":\"Chapter
84
- 7: This Evil...Unveiled!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/25387\",\"name\":\"Chapter
85
- 8: The Lone & Level Sands...\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32378\",\"name\":\"4
86
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32605\",\"name\":\"5
87
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/33312\",\"name\":\"6
88
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36194\",\"name\":\"Annihilation:
89
- Conquest (2007) #1 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36494\",\"name\":\"Annihilation:
90
- Conquest (2007) #2 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36934\",\"name\":\"Annihilation:
91
- Conquest (2007) #3 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37340\",\"name\":\"Pomp
92
- & Pageantry\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009685/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
93
- of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/314\",\"name\":\"Age
94
- of Ultron\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/293\",\"name\":\"Annihilation:
95
- Conquest\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
96
- Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":6},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009685/ultron?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Ultron?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
97
- http_version:
98
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
99
- recorded_with: VCR 2.8.0
@@ -1,46 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/comics/12518?apikey=<PUBLIC_KEY>&hash=a304d29c7e65217654f6ddd18daf2b3c&ts=1392317244
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
- - aba39ab4067fe31a5949b7697d60c8e7226209bc
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '3560'
23
- Date:
24
- - Thu, 13 Feb 2014 19:22:13 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"aba39ab4067fe31a5949b7697d60c8e7226209bc\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":12518,\"digitalId\":0,\"title\":\"Uncanny
30
- X-Men (1963) #67\",\"issueNumber\":67,\"variantDescription\":\"\",\"description\":null,\"modified\":\"2012-03-19T19:17:31-0400\",\"isbn\":\"\",\"upc\":\"\",\"diamondCode\":\"\",\"ean\":\"\",\"issn\":\"\",\"format\":\"Comic\",\"pageCount\":0,\"textObjects\":[],\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12518\",\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/issue/12518/uncanny_x-men_1963_67?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}],\"series\":{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
31
- X-Men (1963 - 2011)\"},\"variants\":[],\"collections\":[],\"collectedIssues\":[],\"dates\":[{\"type\":\"onsaleDate\",\"date\":\"1970-12-10T00:00:00-0500\"},{\"type\":\"focDate\",\"date\":\"-0001-11-30T00:00:00-0500\"}],\"prices\":[{\"type\":\"printPrice\",\"price\":0}],\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/a/50/4f67bce2789b7\",\"extension\":\"jpg\"},\"images\":[{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/a/50/4f67bce2789b7\",\"extension\":\"jpg\"}],\"creators\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/comics/12518/creators\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1523\",\"name\":\"Vince
32
- Colletta\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1240\",\"name\":\"Joe
33
- Sinnott\",\"role\":\"inker\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/196\",\"name\":\"Jack
34
- Kirby\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/956\",\"name\":\"Werner
35
- Roth\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1524\",\"name\":\"Alex
36
- Toth\",\"role\":\"penciller\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/30\",\"name\":\"Stan
37
- Lee\",\"role\":\"editor\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/1553\",\"name\":\"Sam
38
- Rosen\",\"role\":\"letterer\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/creators/198\",\"name\":\"Marie
39
- Severin\",\"role\":\"penciller (cover)\"}],\"returned\":8},\"characters\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/comics/12518/characters\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009159\",\"name\":\"Archangel\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009175\",\"name\":\"Beast\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009257\",\"name\":\"Cyclops\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009356\",\"name\":\"Human
40
- Torch\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009362\",\"name\":\"Iceman\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009382\",\"name\":\"Juggernaut\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009496\",\"name\":\"Phoenix\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"name\":\"X-Men\"}],\"returned\":8},\"stories\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/comics/12518/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15615\",\"name\":\"Cover
41
- #15615\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15616\",\"name\":\"The
42
- Origin of Professor X\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15617\",\"name\":\"Where
43
- Walks the Juggernaut\",\"type\":\"\"}],\"returned\":3},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/comics/12518/events\",\"items\":[],\"returned\":0}}]}}"
44
- http_version:
45
- recorded_at: Thu, 13 Feb 2014 18:47:24 GMT
46
- recorded_with: VCR 2.8.0
@@ -1,559 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://gateway.marvel.com/v1/public/characters?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
- - 0879aa9e102b9eb8b2428c4852535ad7128bad01
19
- Content-Type:
20
- - application/json
21
- Content-Length:
22
- - '78812'
23
- Date:
24
- - Thu, 13 Feb 2014 19:00:44 GMT
25
- Connection:
26
- - keep-alive
27
- body:
28
- encoding: ASCII-8BIT
29
- string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"0879aa9e102b9eb8b2428c4852535ad7128bad01\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1402,\"count\":20,\"results\":[{\"id\":1009521,\"name\":\"
30
- Hank Pym\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/c0/4ce5a0e31f109\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009521\",\"comics\":{\"available\":44,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35533\",\"name\":\"Amazing
31
- Spider-Man (1999) #661\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39041\",\"name\":\"Amazing
32
- Spider-Man (1999) #661 (X-Men Art Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35534\",\"name\":\"Amazing
33
- Spider-Man (1999) #662\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7336\",\"name\":\"Avengers
34
- (1963) #83\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7353\",\"name\":\"Avengers
35
- (1963) #99\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6995\",\"name\":\"Avengers
36
- (1963) #138\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7004\",\"name\":\"Avengers
37
- (1963) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7015\",\"name\":\"Avengers
38
- (1963) #156\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29213\",\"name\":\"Avengers
39
- Academy (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36770\",\"name\":\"Avengers
40
- Academy (2010) #1 (2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34490\",\"name\":\"Avengers
41
- Academy (2010) #1 (DJURDJEVIC VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29217\",\"name\":\"Avengers
42
- Academy (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36482\",\"name\":\"Avengers
43
- Academy (2010) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36479\",\"name\":\"Avengers
44
- Academy (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36489\",\"name\":\"Avengers
45
- Academy (2010) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29324\",\"name\":\"Avengers
46
- Academy Vol 1 : Permanent Record TPB (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6040\",\"name\":\"Beyond!
47
- (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4447\",\"name\":\"Beyond!
48
- (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/30015\",\"name\":\"Incredible
49
- Hulks (2009) #607 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13477\",\"name\":\"Mighty
50
- Avengers (2007) #3\"}],\"returned\":20},\"series\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
51
- Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
52
- (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
53
- Academy (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10037\",\"name\":\"Avengers
54
- Academy Vol 1 : Permanent Record TPB (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/997\",\"name\":\"Beyond!
55
- (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1928\",\"name\":\"Beyond!
56
- (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
57
- Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1866\",\"name\":\"Mighty
58
- Avengers (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5381\",\"name\":\"Mighty
59
- Avengers Vol. 1: The Ultron Initiative (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12877\",\"name\":\"The
60
- Iron Age (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2715\",\"name\":\"Women
61
- of Marvel Vol. 2 (2007)\"}],\"returned\":11},\"stories\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5621\",\"name\":\"1
62
- of 6 - 6XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/8682\",\"name\":\"3
63
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14528\",\"name\":\"Stranger
64
- in a Strange Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14546\",\"name\":\"The
65
- Assassin Never Fails!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/14568\",\"name\":\"The
66
- Private War of Doctor Doom!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15235\",\"name\":\"Come
67
- On In, The Revolution's Fine\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15269\",\"name\":\"They
68
- First Make Mad\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/32378\",\"name\":\"4
69
- of 6 - Ultron; THE INITIATIVE BANNER\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/36886\",\"name\":\"Venom
70
- Bomb 2 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/44681\",\"name\":\"Venom
71
- Bomb 5 of 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47781\",\"name\":\"Secret
72
- Invasion 6 of 8\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52267\",\"name\":\"2
73
- of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52726\",\"name\":\"3
74
- of 6\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53148\",\"name\":\"1
75
- of 1\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53543\",\"name\":\"1
76
- of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57228\",\"name\":\"Interior
77
- #57228\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57230\",\"name\":\"Interior
78
- #57230\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57232\",\"name\":\"Interior
79
- #57232\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57234\",\"name\":\"Interior
80
- #57234\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/57236\",\"name\":\"Interior
81
- #57236\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":6,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009521/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
82
- Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
83
- Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
84
- Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
85
- Heroes\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":6},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009521/_hank_pym?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011334,\"name\":\"3-D
86
- Man\",\"description\":\"\",\"modified\":\"2010-11-30T15:16:53-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/a0/4c002e4aa7e27\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011334\",\"comics\":{\"available\":11,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21366\",\"name\":\"Avengers:
87
- The Initiative (2007) #14\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24571\",\"name\":\"Avengers:
88
- The Initiative (2007) #14 (SPOTLIGHT VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21546\",\"name\":\"Avengers:
89
- The Initiative (2007) #15\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21741\",\"name\":\"Avengers:
90
- The Initiative (2007) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21975\",\"name\":\"Avengers:
91
- The Initiative (2007) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22299\",\"name\":\"Avengers:
92
- The Initiative (2007) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22300\",\"name\":\"Avengers:
93
- The Initiative (2007) #18 (ZOMBIE VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/22506\",\"name\":\"Avengers:
94
- The Initiative (2007) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10223\",\"name\":\"Marvel
95
- Premiere (1972) #35\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10224\",\"name\":\"Marvel
96
- Premiere (1972) #36\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/10225\",\"name\":\"Marvel
97
- Premiere (1972) #37\"}],\"returned\":11},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1945\",\"name\":\"Avengers:
98
- The Initiative (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
99
- Premiere (1972 - 1981)\"}],\"returned\":2},\"stories\":{\"available\":17,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19947\",\"name\":\"Cover
100
- #19947\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19948\",\"name\":\"The
101
- 3-D Man!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19949\",\"name\":\"Cover
102
- #19949\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19950\",\"name\":\"The
103
- Devil's Music!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19951\",\"name\":\"Cover
104
- #19951\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19952\",\"name\":\"Code-Name:
105
- \ The Cold Warrior!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47185\",\"name\":\"Avengers:
106
- The Initiative (2007) #14 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47499\",\"name\":\"Avengers:
107
- The Initiative (2007) #15 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47792\",\"name\":\"Avengers:
108
- The Initiative (2007) #16\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/47793\",\"name\":\"Avengers:
109
- The Initiative (2007) #16 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/48362\",\"name\":\"Avengers:
110
- The Initiative (2007) #17 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49104\",\"name\":\"Avengers:
111
- The Initiative (2007) #18 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49106\",\"name\":\"Avengers:
112
- The Initiative (2007) #18, Zombie Variant - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49888\",\"name\":\"Avengers:
113
- The Initiative (2007) #19\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/49889\",\"name\":\"Avengers:
114
- The Initiative (2007) #19 - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/54371\",\"name\":\"Avengers:
115
- The Initiative (2007) #14, Spotlight Variant - Int\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/96303\",\"name\":\"Deadpool
116
- (1997) #44\",\"type\":\"interiorStory\"}],\"returned\":17},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011334/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
117
- Invasion\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011334/3-d_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/3-D_Man_(Chandler)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1017100,\"name\":\"A-Bomb
118
- (HAS)\",\"description\":\"Rick Jones has been Hulk's best bud since day one,
119
- but now he's more than a friend...he's a teammate! Transformed by a Gamma
120
- energy explosion, A-Bomb's thick, armored skin is just as strong and powerful
121
- as it is blue. And when he curls into action, he uses it like a giant bowling
122
- ball of destruction! \",\"modified\":\"2013-09-18T15:54:04-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/3/20/5232158de5b16\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1017100\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1017100/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1017100/a-bomb_has?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009144,\"name\":\"A.I.M.\",\"description\":\"AIM
123
- is a terrorist organization bent on destroying the world.\",\"modified\":\"2013-10-17T14:41:30-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/6/20/52602f21f29ec\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009144\",\"comics\":{\"available\":36,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36763\",\"name\":\"Ant-Man
124
- & the Wasp (2010) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17553\",\"name\":\"Avengers
125
- (1998) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7340\",\"name\":\"Avengers
126
- (1963) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1170\",\"name\":\"Avengers
127
- Vol. 2: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1214\",\"name\":\"Avengers
128
- Vol. II: Red Zone (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12787\",\"name\":\"Captain
129
- America (1998) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20367\",\"name\":\"Defenders
130
- (1972) #57\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/31068\",\"name\":\"Incredible
131
- Hulks (2009) #606 (VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36737\",\"name\":\"Marvel
132
- Adventures Super Heroes (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2110\",\"name\":\"Marvel
133
- Masterworks: Captain America Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1130\",\"name\":\"Marvel
134
- Masterworks: Captain America Vol. 1 - 2nd Edition (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2319\",\"name\":\"Marvel
135
- Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2820\",\"name\":\"Marvel
136
- Masterworks: Doctor Strange Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2001\",\"name\":\"Marvel
137
- Masterworks: The Invincible Iron Man Vol. (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17468\",\"name\":\"Marvel
138
- Masterworks: The Invincible Iron Man Vol. 1 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1164\",\"name\":\"Marvel
139
- Masterworks: The Silver Surfer Vol. 2 (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11068\",\"name\":\"Strange
140
- Tales (1951) #146\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11069\",\"name\":\"Strange
141
- Tales (1951) #147\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11070\",\"name\":\"Strange
142
- Tales (1951) #148\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/11324\",\"name\":\"Tales
143
- of Suspense (1959) #79\"}],\"returned\":20},\"series\":{\"available\":23,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13082\",\"name\":\"Ant-Man
144
- & the Wasp (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
145
- (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
146
- (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/227\",\"name\":\"Avengers
147
- Vol. 2: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/271\",\"name\":\"Avengers
148
- Vol. II: Red Zone (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
149
- America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3743\",\"name\":\"Defenders
150
- (1972 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
151
- Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9718\",\"name\":\"Marvel
152
- Adventures Super Heroes (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1506\",\"name\":\"Marvel
153
- Masterworks: Captain America Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/189\",\"name\":\"Marvel
154
- Masterworks: Captain America Vol. 1 - 2nd Edition (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1468\",\"name\":\"Marvel
155
- Masterworks: Doctor Strange Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1494\",\"name\":\"Marvel
156
- Masterworks: The Invincible Iron Man Vol. (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3300\",\"name\":\"Marvel
157
- Masterworks: The Invincible Iron Man Vol. 1 (0000 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/222\",\"name\":\"Marvel
158
- Masterworks: The Silver Surfer Vol. 2 (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2076\",\"name\":\"Strange
159
- Tales (1951 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2079\",\"name\":\"Tales
160
- of Suspense (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2725\",\"name\":\"Tales
161
- of Suspsnse Transport (1959 - 1968)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13213\",\"name\":\"Taskmaster
162
- (2010 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
163
- X-Men (1963 - 2011)\"}],\"returned\":20},\"stories\":{\"available\":28,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10253\",\"name\":\"When
164
- the Unliving Strike\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10255\",\"name\":\"Cover
165
- #10255\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10256\",\"name\":\"The
166
- Enemy Within!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10259\",\"name\":\"Death
167
- Before Dishonor!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10261\",\"name\":\"Cover
168
- #10261\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/10262\",\"name\":\"The
169
- End of A.I.M.!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11921\",\"name\":\"The
170
- Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11930\",\"name\":\"He
171
- Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11936\",\"name\":\"The
172
- Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11981\",\"name\":\"If
173
- This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11984\",\"name\":\"A
174
- Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11995\",\"name\":\"At
175
- the Mercy of the Maggia\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/15243\",\"name\":\"Look
176
- Homeward, Avenger\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28233\",\"name\":\"In
177
- Sin Airy X\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28971\",\"name\":\"[The
178
- Brothers Part I]\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34426\",\"name\":\"The
179
- Red Skull Lives!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34435\",\"name\":\"He
180
- Who Holds the Cosmic Cube\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34441\",\"name\":\"The
181
- Maddening Mystery of the Inconceivable Adaptoid!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34486\",\"name\":\"If
182
- This Be... Modok\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34489\",\"name\":\"A
183
- Time to Die -- A Time to Live!\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009144/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009144/aim.?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/A.I.M.?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009146,\"name\":\"Abomination
184
- (Emil Blonsky)\",\"description\":\"Formerly known as Emil Blonsky, a spy of
185
- Soviet Yugoslavian origin working for the KGB, the Abomination gained his
186
- powers after receiving a dose of gamma radiation similar to that which transformed
187
- Bruce Banner into the incredible Hulk.\",\"modified\":\"2012-03-20T12:32:12-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/50/4ce18691cbf04\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009146\",\"comics\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17547\",\"name\":\"Avengers
188
- (1998) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17548\",\"name\":\"Avengers
189
- (1998) #62\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1098\",\"name\":\"Avengers
190
- Vol. 1: World Trust (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8557\",\"name\":\"Earth
191
- X (1999) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4241\",\"name\":\"Earth
192
- X (New (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20863\",\"name\":\"Hulk
193
- (2008) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23677\",\"name\":\"Hulk
194
- Vol. 1: Red Hulk (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2499\",\"name\":\"Hulk:
195
- Destruction (2005) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14425\",\"name\":\"Incredible
196
- Hulk (1999) #25\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14428\",\"name\":\"Incredible
197
- Hulk (1999) #28\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14450\",\"name\":\"Incredible
198
- Hulk (1999) #50\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14451\",\"name\":\"Incredible
199
- Hulk (1999) #51\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8948\",\"name\":\"Incredible
200
- Hulk (1962) #137\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9006\",\"name\":\"Incredible
201
- Hulk (1962) #195\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9007\",\"name\":\"Incredible
202
- Hulk (1962) #196\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9125\",\"name\":\"Incredible
203
- Hulk (1962) #314\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9193\",\"name\":\"Incredible
204
- Hulk (1962) #382\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9194\",\"name\":\"Incredible
205
- Hulk (1962) #383\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9195\",\"name\":\"Incredible
206
- Hulk (1962) #384\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9243\",\"name\":\"Incredible
207
- Hulk (1962) #432\"}],\"returned\":20},\"series\":{\"available\":24,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
208
- (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/158\",\"name\":\"Avengers
209
- Vol. 1: World Trust (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/378\",\"name\":\"Earth
210
- X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1806\",\"name\":\"Earth
211
- X (New (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3374\",\"name\":\"Hulk
212
- (2008 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6831\",\"name\":\"Hulk
213
- Vol. 1: Red Hulk (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/924\",\"name\":\"Hulk:
214
- Destruction (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
215
- Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/465\",\"name\":\"Incredible
216
- Hulk (1999 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2983\",\"name\":\"Incredible
217
- Hulk Annual (1976 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/212\",\"name\":\"Incredible
218
- Hulk Vol. 4: Abominable (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/244\",\"name\":\"Incredible
219
- Hulk Vol. IV: Abominable (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/8842\",\"name\":\"Incredible
220
- Hulks (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2572\",\"name\":\"Iron
221
- Man (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/977\",\"name\":\"Irredeemable
222
- Ant-Man (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2423\",\"name\":\"Irredeemable
223
- Ant-Man Vol. 1: Low-Life (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3722\",\"name\":\"Killraven
224
- (2002 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2437\",\"name\":\"Killraven
225
- Premiere (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1671\",\"name\":\"Marvel
226
- Masterworks: The Incredible Hulk Vol.3 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
227
- Super-Heroes (1992 - 1993)\"}],\"returned\":20},\"stories\":{\"available\":39,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4946\",\"name\":\"4
228
- of 4 - 4XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/5496\",\"name\":\"1
229
- of 6 -\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12370\",\"name\":\"Cover
230
- #12370\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12372\",\"name\":\"Whosoever
231
- Harms the Hulk..!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18419\",\"name\":\"[none]\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18420\",\"name\":\"The
232
- Stars Mine Enemy\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18537\",\"name\":\"Warfare
233
- In Wonderland!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18539\",\"name\":\"The
234
- Abomination Proclamation!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18776\",\"name\":\"Cover
235
- #18776\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18914\",\"name\":\"Moving
236
- On\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18916\",\"name\":\"Green
237
- Canard\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18918\",\"name\":\"Small
238
- Talk\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19024\",\"name\":\"Shades
239
- of Green\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19081\",\"name\":\"Who
240
- Shall Fear The Green Goliath?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19082\",\"name\":\"Last
241
- Legs\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19119\",\"name\":\"The
242
- Great Astonishment - Chapter One: Auld Lang Syne\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19122\",\"name\":\"The
243
- Great Astonishment - Chapter Two: The Edge of Universal Pain\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19124\",\"name\":\"The
244
- Strangest Story Of All Time!!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19125\",\"name\":\"The
245
- Great Astonishment - Conclusion: It's All True!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/24932\",\"name\":\"Earth
246
- X Chapter Seven\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009146/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
247
- War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
248
- Gauntlet\"}],\"returned\":2},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009146/abomination_emil_blonsky?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Abomination?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1016823,\"name\":\"Abomination
249
- (Ultimate)\",\"description\":\"\",\"modified\":\"2012-07-10T19:11:52-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/characters/1016823\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/15717\",\"name\":\"Ultimate
250
- X-Men (2000) #26\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1151\",\"name\":\"Ultimate
251
- X-Men Vol. 6: Return of the King (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1186\",\"name\":\"Ultimate
252
- X-Men Vol. VI: Return of the King (Trade Paperback)\"}],\"returned\":3},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/474\",\"name\":\"Ultimate
253
- X-Men (2000 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/210\",\"name\":\"Ultimate
254
- X-Men Vol. 6: Return of the King (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/243\",\"name\":\"Ultimate
255
- X-Men Vol. VI: Return of the King (2003)\"}],\"returned\":3},\"stories\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31883\",\"name\":\"Free
256
- Preview of THE INCREDIBLE HULK #50\",\"type\":\"interiorStory\"}],\"returned\":1},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1016823/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1016823/abomination_ultimate?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009148,\"name\":\"Absorbing
257
- Man\",\"description\":\"\",\"modified\":\"2013-10-24T14:32:08-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/1/b0/5269678709fb7\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009148\",\"comics\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36481\",\"name\":\"Avengers
258
- Academy (2010) #16\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36480\",\"name\":\"Avengers
259
- Academy (2010) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36479\",\"name\":\"Avengers
260
- Academy (2010) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36484\",\"name\":\"Avengers
261
- Academy (2010) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36489\",\"name\":\"Avengers
262
- Academy (2010) #21\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6935\",\"name\":\"Avengers
263
- Annual (1967) #20\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12783\",\"name\":\"Captain
264
- America (1998) #24\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20427\",\"name\":\"Dazzler
265
- (1981) #18\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20428\",\"name\":\"Dazzler
266
- (1981) #19\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41433\",\"name\":\"Fear
267
- Itself (2010) #2 (3rd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38452\",\"name\":\"Fear
268
- Itself: Fellowship of Fear (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39848\",\"name\":\"Fear
269
- Itself: The Worthy (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40977\",\"name\":\"Fear
270
- Itself: The Worthy (2011) #7\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9072\",\"name\":\"Incredible
271
- Hulk (1962) #261\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29794\",\"name\":\"Iron
272
- Man 2.0 (2011) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/29795\",\"name\":\"Iron
273
- Man 2.0 (2011) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/9698\",\"name\":\"Journey
274
- Into Mystery (1952) #122\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5234\",\"name\":\"Marvel
275
- Adventures Fantastic Four (2005) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6277\",\"name\":\"Marvel
276
- Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (Digest)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39537\",\"name\":\"Marvel
277
- Masterworks: The Mighty Thor Vol. 3 (Trade Paperback)\"}],\"returned\":20},\"series\":{\"available\":28,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9086\",\"name\":\"Avengers
278
- Academy (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1988\",\"name\":\"Avengers
279
- Annual (1967 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1997\",\"name\":\"Captain
280
- America (1998 - 2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3745\",\"name\":\"Dazzler
281
- (1981 - 1986)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13691\",\"name\":\"Fear
282
- Itself (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13857\",\"name\":\"Fear
283
- Itself: Fellowship of Fear (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13827\",\"name\":\"Fear
284
- Itself: The Worthy (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
285
- Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9924\",\"name\":\"Iron
286
- Man 2.0 (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2032\",\"name\":\"Journey
287
- Into Mystery (1952 - 1966)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/926\",\"name\":\"Marvel
288
- Adventures Fantastic Four (2005 - 2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1959\",\"name\":\"Marvel
289
- Adventures Fantastic Four Vol. 5: All 4 One, 4 for All (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14492\",\"name\":\"Marvel
290
- Masterworks: The Mighty Thor Vol. 3 (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14491\",\"name\":\"Marvel
291
- Masterworks: The Mighty Thor Vol. 3 Variant (DM Only) (2011 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1588\",\"name\":\"Marvel
292
- Masterworks: The Mighty Thor Vol. 4 (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
293
- Super-Heroes (1992 - 1993)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1866\",\"name\":\"Mighty
294
- Avengers (2007 - 2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2059\",\"name\":\"Paradise
295
- X (2002 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2431\",\"name\":\"Paradise
296
- X Vol. 1 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6796\",\"name\":\"Secret
297
- Warriors (2008 - 2011)\"}],\"returned\":20},\"stories\":{\"available\":43,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4988\",\"name\":\"1
298
- of 1\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/11028\",\"name\":\"Journey
299
- Into Mystery (1952) #122\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16688\",\"name\":\"Thor
300
- (1966) #206\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/16691\",\"name\":\"Thor
301
- (1966) #207\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17049\",\"name\":\"Thor
302
- (1966) #375\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17050\",\"name\":\"Shadows
303
- of the Past\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17051\",\"name\":\"Heroes
304
- Always Win...Don't They?\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17342\",\"name\":\"Cover
305
- #17342\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/17412\",\"name\":\"A
306
- Wing and a Prayer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18670\",\"name\":\"Encounter
307
- On Easter Island!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21604\",\"name\":\"Secret
308
- Wars (1984) #6\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/21606\",\"name\":\"Secret
309
- Wars (1984) #7\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/26016\",\"name\":\"Paradise
310
- X Issue 0\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/26025\",\"name\":\"Cover
311
- #26025\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28708\",\"name\":\"The
312
- Hunted Part 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31596\",\"name\":\"\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/31597\",\"name\":\"Downtown
313
- Demolition\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37745\",\"name\":\"A
314
- Wing and a Prayer\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/39926\",\"name\":\"And
315
- the Absorbing Man Makes Three!\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/39927\",\"name\":\"Hammer
316
- Time!\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009148/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
317
- Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
318
- Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
319
- Heroes\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/273\",\"name\":\"Siege\"}],\"returned\":4},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009148/absorbing_man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Absorbing_Man?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009149,\"name\":\"Abyss\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/e/e0/4c004214c1502\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009149\",\"comics\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009149/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13943\",\"name\":\"Uncanny
320
- X-Men (1963) #402\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13945\",\"name\":\"Uncanny
321
- X-Men (1963) #404\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13946\",\"name\":\"Uncanny
322
- X-Men (1963) #405\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13947\",\"name\":\"Uncanny
323
- X-Men (1963) #406\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13970\",\"name\":\"Uncanny
324
- X-Men (1963) #429\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13972\",\"name\":\"Uncanny
325
- X-Men (1963) #431\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12386\",\"name\":\"X-Men:
326
- Alpha (1994) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2539\",\"name\":\"X-Men:
327
- The Complete Age of Apocalypse Epic Book 2 (Trade Paperback)\"}],\"returned\":8},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009149/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2258\",\"name\":\"Uncanny
328
- X-Men (1963 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2104\",\"name\":\"X-Men:
329
- Alpha (1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1583\",\"name\":\"X-Men:
330
- The Complete Age of Apocalypse Epic Book 2 (2005)\"}],\"returned\":3},\"stories\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009149/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/26281\",\"name\":\"A
331
- Beginning\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28352\",\"name\":\"Utility
332
- of Myth\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28356\",\"name\":\"Army
333
- Ants\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28358\",\"name\":\"Ballroom
334
- Blitzkrieg\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28360\",\"name\":\"Staring
335
- Contests are for Suckers\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28407\",\"name\":\"The
336
- Draco Part One: Sins of the Father\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28411\",\"name\":\"The
337
- Draco Part Three\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28413\",\"name\":\"The
338
- Draco Part Four\",\"type\":\"interiorStory\"}],\"returned\":8},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009149/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
339
- of Apocalypse\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009149/abyss?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Abyss_(alien)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011266,\"name\":\"Adam
340
- Destine\",\"description\":\"\",\"modified\":\"1969-12-31T19: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/characters/1011266\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011266/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011266/adam_destine?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Destine,_Adam?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010354,\"name\":\"Adam
341
- Warlock\",\"description\":\"Adam Warlock is an artificially created human
342
- who was born in a cocoon at a scientific complex called The Beehive.\",\"modified\":\"2013-08-07T13:49:06-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/a/f0/5202887448860\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010354\",\"comics\":{\"available\":104,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17271\",\"name\":\"Annihilation:
343
- Conquest (2007) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17405\",\"name\":\"Annihilation:
344
- Conquest (2007) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17645\",\"name\":\"Annihilation:
345
- Conquest (2007) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20686\",\"name\":\"Annihilation:
346
- Conquest (2007) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20885\",\"name\":\"Annihilation:
347
- Conquest (2007) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21016\",\"name\":\"Annihilation:
348
- Conquest (2007) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12412\",\"name\":\"Avengers
349
- Forever (1998) #9\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1033\",\"name\":\"Avengers
350
- Legends Vol. I: Avengers Forever (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20731\",\"name\":\"Clandestine
351
- Classic Premiere (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20187\",\"name\":\"Doctor
352
- Strange, Sorcerer Supreme (1988) #27\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20193\",\"name\":\"Doctor
353
- Strange, Sorcerer Supreme (1988) #32\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/20197\",\"name\":\"Doctor
354
- Strange, Sorcerer Supreme (1988) #36\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8560\",\"name\":\"Earth
355
- X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8552\",\"name\":\"Earth
356
- X (1999) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8550\",\"name\":\"Earth
357
- X (1999) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4241\",\"name\":\"Earth
358
- X (New (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12975\",\"name\":\"Fantastic
359
- Four (1961) #172\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/13195\",\"name\":\"Fantastic
360
- Four (1961) #370\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8988\",\"name\":\"Incredible
361
- Hulk (1962) #177\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/8989\",\"name\":\"Incredible
362
- Hulk (1962) #178\"}],\"returned\":20},\"series\":{\"available\":46,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3061\",\"name\":\"Annihilation:
363
- Conquest (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2111\",\"name\":\"Avengers
364
- Forever (1998 - 2001)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/93\",\"name\":\"Avengers
365
- Legends Vol. I: Avengers Forever (2002)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3874\",\"name\":\"Clandestine
366
- Classic Premiere (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3741\",\"name\":\"Doctor
367
- Strange, Sorcerer Supreme (1988 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/378\",\"name\":\"Earth
368
- X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1806\",\"name\":\"Earth
369
- X (New (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2121\",\"name\":\"Fantastic
370
- Four (1961 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2021\",\"name\":\"Incredible
371
- Hulk (1962 - 1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2983\",\"name\":\"Incredible
372
- Hulk Annual (1976 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6449\",\"name\":\"Infinity
373
- Crusade Vol. 1 (2008 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2039\",\"name\":\"Marvel
374
- Comics Presents (1988 - 1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1697\",\"name\":\"Marvel
375
- Comics Presents: Wolverine Vol. 4 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1837\",\"name\":\"Marvel
376
- Masterworks: Warlock Vol. (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2045\",\"name\":\"Marvel
377
- Premiere (1972 - 1981)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2301\",\"name\":\"Marvel
378
- Super-Heroes (1992 - 1993)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3715\",\"name\":\"Marvel
379
- Two-in-One (1974 - 1983)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1504\",\"name\":\"Marvel
380
- Visionaries: Steve Ditko (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7455\",\"name\":\"New
381
- Mutants (2009 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2055\",\"name\":\"New
382
- Mutants (1983 - 1991)\"}],\"returned\":20},\"stories\":{\"available\":124,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/12569\",\"name\":\"Cry,
383
- the Bedeviled Planet!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/13121\",\"name\":\"Forever
384
- Evil\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18500\",\"name\":\"Peril
385
- of the Paired Planets\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18501\",\"name\":\"Peril
386
- of the Paired Planets\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/18503\",\"name\":\"Triumph
387
- On Terra-Two\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19847\",\"name\":\"Cover
388
- #19847\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19848\",\"name\":\"Performance\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19859\",\"name\":\"Days
389
- of Future Present Part 4\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19860\",\"name\":\"You
390
- Must Remember This\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19883\",\"name\":\"The
391
- Adventures of Lockheed the Space Dragon and His Pet Girl, Kitty\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19884\",\"name\":\"The
392
- Saga of Storm: Goddess of Thunder\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19885\",\"name\":\"There's
393
- No Place Like Home\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19887\",\"name\":\"Cover
394
- #19887\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19888\",\"name\":\"And
395
- Men Shall Call Him Warlock\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19911\",\"name\":\"Cover
396
- #19911\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/19912\",\"name\":\"The
397
- Hounds of Helios\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20169\",\"name\":\"Cover
398
- #20169\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20170\",\"name\":\"The
399
- Day of the Prophet\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20171\",\"name\":\"Cover
400
- #20171\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/20172\",\"name\":\"How
401
- Strange My Destiny! The Price! Part I Chapter I\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":10,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010354/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/293\",\"name\":\"Annihilation:
402
- Conquest\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
403
- Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/235\",\"name\":\"Blood
404
- and Thunder\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
405
- of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
406
- Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
407
- Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
408
- War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/263\",\"name\":\"Mutant
409
- Massacre\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
410
- Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/280\",\"name\":\"X-Tinction
411
- Agenda\"}],\"returned\":10},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010354/adam_warlock?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Warlock,_Adam?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010846,\"name\":\"Aegis
412
- (Trey Rollins)\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/5/e0/4c0035c9c425d\",\"extension\":\"gif\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010846\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010846/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010846/aegis_trey_rollins?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Aegis_%28Trey_Rollins%29?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011297,\"name\":\"Agent
413
- Brand\",\"description\":\"\",\"modified\":\"2013-10-24T13:09:30-0400\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/4/60/52695285d6e7e\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011297\",\"comics\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5477\",\"name\":\"Astonishing
414
- X-Men (2004) #19 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38318\",\"name\":\"Astonishing
415
- X-Men (2004) #38\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38319\",\"name\":\"Astonishing
416
- X-Men (2004) #40\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/40024\",\"name\":\"Astonishing
417
- X-Men (2004) #40 (I Am Captain America Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39890\",\"name\":\"Heralds
418
- (Trade Paperback)\"}],\"returned\":5},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
419
- X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13065\",\"name\":\"Heralds
420
- (2010 - Present)\"}],\"returned\":2},\"stories\":{\"available\":5,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/3353\",\"name\":\"Interior
421
- #3353\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/89900\",\"name\":\"Astonishing
422
- X-Men (2004) #38\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90548\",\"name\":\"Heralds
423
- TPB\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90819\",\"name\":\"Interior
424
- #90819\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/90853\",\"name\":\"
425
- Interior Astonishing X-Men (2004) #40\",\"type\":\"interiorStory\"}],\"returned\":5},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011297/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011297/agent_brand?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_Brand?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011031,\"name\":\"Agent
426
- X (Nijo)\",\"description\":\"Originally a partner of the mind-altering assassin
427
- Black Swan, Nijo spied on Deadpool as part of the Swan's plan to exact revenge
428
- for Deadpool falsely taking credit for the Swan's assassination of the Four
429
- Winds crime family, which included Nijo's brother.\",\"modified\":\"1969-12-31T19: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/characters/1011031\",\"comics\":{\"available\":10,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17702\",\"name\":\"Agent
430
- X (2002) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17709\",\"name\":\"Agent
431
- X (2002) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17710\",\"name\":\"Agent
432
- X (2002) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17711\",\"name\":\"Agent
433
- X (2002) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17712\",\"name\":\"Agent
434
- X (2002) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17713\",\"name\":\"Agent
435
- X (2002) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17704\",\"name\":\"Agent
436
- X (2002) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1649\",\"name\":\"Cable
437
- & Deadpool (2004) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/21845\",\"name\":\"Cable
438
- & Deadpool (2004) #46 (Zombie Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5761\",\"name\":\"Cable
439
- & Deadpool Vol. 2: The Burnt Offering (Trade Paperback)\"}],\"returned\":10},\"series\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/459\",\"name\":\"Agent
440
- X (2002 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/693\",\"name\":\"Cable
441
- & Deadpool (2004 - 2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1338\",\"name\":\"Cable
442
- & Deadpool Vol. 2: The Burnt Offering (2007)\"}],\"returned\":3},\"stories\":{\"available\":15,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/2484\",\"name\":\"2
443
- of 2 - Thirty Pieces\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37514\",\"name\":\"Cover
444
- #37514\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37515\",\"name\":\"Dead
445
- Man's Switch Part One\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37518\",\"name\":\"Cover
446
- #37518\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37525\",\"name\":\"Cover
447
- #37525\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37526\",\"name\":\"Dead
448
- Man's Switch Part Two\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37527\",\"name\":\"Cover
449
- #37527\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37528\",\"name\":\"Dead
450
- Man's Switch Part Three\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37529\",\"name\":\"Cover
451
- #37529\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37530\",\"name\":\"Dead
452
- Man's Switch Part Four\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37531\",\"name\":\"Cover
453
- #37531\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37532\",\"name\":\"Dead
454
- Man's Switch Part Five\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37533\",\"name\":\"Cover
455
- #37533\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/37534\",\"name\":\"Dead
456
- Man's Switch Part Six\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/94769\",\"name\":\"Cable
457
- & Deadpool (2004) #46, Zombie Variant\",\"type\":\"cover\"}],\"returned\":15},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011031/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011031/agent_x_nijo?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_X_(Nijo)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1009150,\"name\":\"Agent
458
- Zero\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/f/60/4c0042121d790\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009150\",\"comics\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/3357\",\"name\":\"Weapon
459
- X: Days of Future Now (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/2438\",\"name\":\"Weapon
460
- X: Days of Future Now (2005) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18293\",\"name\":\"What
461
- If? (1989)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14182\",\"name\":\"Wolverine
462
- (1988) #60\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14183\",\"name\":\"Wolverine
463
- (1988) #61\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14184\",\"name\":\"Wolverine
464
- (1988) #62\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14185\",\"name\":\"Wolverine
465
- (1988) #63\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14186\",\"name\":\"Wolverine
466
- (1988) #64\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14189\",\"name\":\"Wolverine
467
- (1988) #67\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14190\",\"name\":\"Wolverine
468
- (1988) #68\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14211\",\"name\":\"Wolverine
469
- (1988) #87\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14107\",\"name\":\"Wolverine
470
- (1988) #163\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14110\",\"name\":\"Wolverine
471
- (1988) #166\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14121\",\"name\":\"Wolverine
472
- (1988) #176\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/1023\",\"name\":\"Wolverine/Deadpool:
473
- Weapon X (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18176\",\"name\":\"X-Man
474
- (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14282\",\"name\":\"X-Men
475
- (1991) #10\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/14293\",\"name\":\"X-Men
476
- (1991) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18132\",\"name\":\"X-Men
477
- Unlimited (1993) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/18116\",\"name\":\"X-Men
478
- Unlimited (1993) #15\"}],\"returned\":20},\"series\":{\"available\":8,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1478\",\"name\":\"Weapon
479
- X: Days of Future Now (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/869\",\"name\":\"Weapon
480
- X: Days of Future Now (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3648\",\"name\":\"What
481
- If? (1989 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2262\",\"name\":\"Wolverine
482
- (1988 - 2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/84\",\"name\":\"Wolverine/Deadpool:
483
- Weapon X (1999)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3643\",\"name\":\"X-Man
484
- (1995 - 2000)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2265\",\"name\":\"X-Men
485
- (1991 - 2001)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3637\",\"name\":\"X-Men
486
- Unlimited (1993 - 1999)\"}],\"returned\":8},\"stories\":{\"available\":20,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/4606\",\"name\":\"3
487
- of 5 - 5XLS\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28706\",\"name\":\"The
488
- Hunted Part 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28712\",\"name\":\"The
489
- Hunted Part 5\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28738\",\"name\":\"The
490
- Logan Files Epilogue\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28881\",\"name\":\"Counting
491
- Coup\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28883\",\"name\":\"Nightmare
492
- Quest!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28885\",\"name\":\"Reunion!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28887\",\"name\":\"Bastions
493
- of Glory!\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28889\",\"name\":\"What
494
- Goes Around...\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28895\",\"name\":\"Valley
495
- O' Death\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28897\",\"name\":\"Epsilon
496
- Red\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/28941\",\"name\":\"Showdown
497
- In Lowtown\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/29125\",\"name\":\"Last
498
- Stand\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/29139\",\"name\":\"Over...Again\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38511\",\"name\":\"Second
499
- Contact\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38554\",\"name\":\"Among
500
- Us--A Sabretooth\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38555\",\"name\":\"The
501
- Whispers Scream\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38556\",\"name\":\"Sabretooth
502
- Vs. Maverick: Severed Ties\",\"type\":\"pinup\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38650\",\"name\":\"Maverick\",\"type\":\"\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/38903\",\"name\":\"Maverick\",\"type\":\"\"}],\"returned\":20},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009150/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009150/agent_zero?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agent_Zero?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011198,\"name\":\"Agents
503
- of Atlas\",\"description\":\"\",\"modified\":\"2010-11-17T14:36:25-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/9/a0/4ce18a834b7f5\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011198\",\"comics\":{\"available\":31,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6318\",\"name\":\"Agents
504
- of Atlas (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23659\",\"name\":\"Agents
505
- of Atlas (2009) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/4801\",\"name\":\"Agents
506
- of Atlas (2006) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23660\",\"name\":\"Agents
507
- of Atlas (2009) #1 (50/50 COVER)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23825\",\"name\":\"Agents
508
- of Atlas (2009) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5089\",\"name\":\"Agents
509
- of Atlas (2006) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23824\",\"name\":\"Agents
510
- of Atlas (2009) #2 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/27402\",\"name\":\"Agents
511
- of Atlas (2009) #2 (BACHALO 2ND PRINTING VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5241\",\"name\":\"Agents
512
- of Atlas (2006) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24015\",\"name\":\"Agents
513
- of Atlas (2009) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24016\",\"name\":\"Agents
514
- of Atlas (2009) #3 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24017\",\"name\":\"Agents
515
- of Atlas (2009) #3 (Wolverine Art Appreciation Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24219\",\"name\":\"Agents
516
- of Atlas (2009) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5404\",\"name\":\"Agents
517
- of Atlas (2006) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24221\",\"name\":\"Agents
518
- of Atlas (2009) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5665\",\"name\":\"Agents
519
- of Atlas (2006) #5\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24222\",\"name\":\"Agents
520
- of Atlas (2009) #5 (MCGUINNESS VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5842\",\"name\":\"Agents
521
- of Atlas (2006) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24360\",\"name\":\"Agents
522
- of Atlas (2009) #6\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24361\",\"name\":\"Agents
523
- of Atlas (2009) #7\"}],\"returned\":20},\"series\":{\"available\":4,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1097\",\"name\":\"Agents
524
- of Atlas (2006 - 2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6807\",\"name\":\"Agents
525
- of Atlas (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1980\",\"name\":\"Agents
526
- of Atlas (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9181\",\"name\":\"Avengers
527
- Vs. Atlas (2010)\"}],\"returned\":4},\"stories\":{\"available\":32,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6009\",\"name\":\"1
528
- of 6 - 6 XLS-\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6011\",\"name\":\"2
529
- of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6013\",\"name\":\"3
530
- of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6015\",\"name\":\"4
531
- of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6017\",\"name\":\"5
532
- of 6 - 6 XLS -\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/6019\",\"name\":\"5
533
- of 6 - Story A - 6XLS\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52393\",\"name\":\"1
534
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52395\",\"name\":\"1
535
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52861\",\"name\":\"2
536
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/52863\",\"name\":\"2
537
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53263\",\"name\":\"3
538
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53265\",\"name\":\"3
539
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53266\",\"name\":\"3
540
- of 3\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53669\",\"name\":\"1
541
- of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53673\",\"name\":\"2
542
- of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53675\",\"name\":\"2
543
- of 2\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53893\",\"name\":\"Interior
544
- #53893\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53895\",\"name\":\"Interior
545
- #53895\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53897\",\"name\":\"Interior
546
- #53897\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/53899\",\"name\":\"Interior
547
- #53899\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":1,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011198/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
548
- Reign\"}],\"returned\":1},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011198/agents_of_atlas?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Agents_of_Atlas?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011175,\"name\":\"Aginar\",\"description\":\"\",\"modified\":\"1969-12-31T19: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/characters/1011175\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011175/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011175/aginar?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Aginar?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011136,\"name\":\"Air-Walker
549
- (Gabriel Lan)\",\"description\":\"\",\"modified\":\"1969-12-31T19: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/characters/1011136\",\"comics\":{\"available\":3,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/5589\",\"name\":\"Heroes
550
- Reborn: Iron Man (Trade Paperback)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16330\",\"name\":\"Iron
551
- Man (1996) #11\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16331\",\"name\":\"Iron
552
- Man (1996) #12\"}],\"returned\":3},\"series\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1814\",\"name\":\"Heroes
553
- Reborn: Iron Man (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13577\",\"name\":\"Iron
554
- Man (1996 - 1998)\"}],\"returned\":2},\"stories\":{\"available\":2,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34082\",\"name\":\"Magical
555
- Mystery Tour\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/34085\",\"name\":\"Matters
556
- of the Heart\",\"type\":\"interiorStory\"}],\"returned\":2},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011136/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011136/air-walker_gabriel_lan?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Air-Walker_(Gabriel_Lan)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011176,\"name\":\"Ajak\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/2/80/4c002f35c5215\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1011176\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011176/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011176/ajak?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Ajak?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1010870,\"name\":\"Ajaxis\",\"description\":\"\",\"modified\":\"1969-12-31T19:00:00-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/b/70/4c0035adc7d3a\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1010870\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1010870/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1010870/ajaxis?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Ajaxis?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]},{\"id\":1011194,\"name\":\"Akemi\",\"description\":\"\",\"modified\":\"1969-12-31T19: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/characters/1011194\",\"comics\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/comics\",\"items\":[],\"returned\":0},\"series\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/series\",\"items\":[],\"returned\":0},\"stories\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/stories\",\"items\":[],\"returned\":0},\"events\":{\"available\":0,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1011194/events\",\"items\":[],\"returned\":0},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1011194/akemi?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
557
- http_version:
558
- recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
559
- recorded_with: VCR 2.8.0